Skip to content

Commit

Permalink
Invoke test workflow on PR (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
emileferreira committed Jan 18, 2024
1 parent 6e957ba commit f51c92c
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
name: Acceptance Tests

on: [push, workflow_dispatch]

name: Python tests
on: [push, workflow_dispatch, pull_request]
jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -20,6 +16,5 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install antlr4-python3-runtime==4.9.1
- name: run all the tests in the python script
run: |
python3 tests/test_all.py
- name: Run all the Python tests
run: python3 tests/test_all.py

0 comments on commit f51c92c

Please sign in to comment.