commit fd03df1b5d1adaddc9bc845e766a75ea67c142b0 from: Sergey Bronnikov date: Wed Jun 15 13:24:56 2022 UTC Replace Travis CI with GH Actions workflow commit - a492a0fcd45b37a807fab2f31937a1d0b9303610 commit + fd03df1b5d1adaddc9bc845e766a75ea67c142b0 blob - /dev/null blob + f4f808c73bcc82b44cca0fc50c93edb4b350f5af (mode 644) --- /dev/null +++ .github/workflows/test.yml @@ -0,0 +1,21 @@ +name: Testing + +on: + push: + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@master + with: + fetch-depth: 0 + submodules: recursive + + - name: Setup requirements + run: pip install -r requirements.txt + + - name: Run regression tests + run: python -m pytest tests/test_grammars.py blob - 77737588408f5daf03be8039f26a6322e3e72628 (mode 644) blob + /dev/null --- .travis.yml +++ /dev/null @@ -1,15 +0,0 @@ -python: 3.7 - -os: - - linux - -script: - - pip install -r requirements.txt - - python -m pytest tests/test_grammars.py - -notifications: - email: - recipients: - - estetus+travis-ci@gmail.com - on_success: change - on_failure: always