Skip to content

Unit corrections to Fabbri 2017 #101

Unit corrections to Fabbri 2017

Unit corrections to Fabbri 2017 #101

Workflow file for this run

name: Syntax test
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- '**'
jobs:
test:
name: syntax
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v3
- name: Configure Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
- name: Install python libraries
run: |
pip install -r requirements.txt
- name: Run syntax tests
run: |
python test.py