Skip to content

Add automatic tests with Github Actions #2

Add automatic tests with Github Actions

Add automatic tests with Github Actions #2

Workflow file for this run

name: "tox.yml"
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
env:
TOXENV: ${{ matrix.test }}
RUN_INTEGRATION_TESTS: ${{ matrix.test_number}}
steps:
- uses: actions/checkout@v3
- run: pip install "tox"
- run: pip install bandit
- run: pip install codecov
- run: pip install slugs
- run: sudo chmod -R 777 /usr/local/lib/
- run: python3 setup.py install
- run: ./.travis/run.sh
- run: codecov
strategy:
matrix:
test: ["pep8", "bandit", "docs"]
os: [ubuntu-22.04,ubuntu-20.04]
include:
- test: "py38"
test_number: "0"
os: ubuntu-20.04
- test: "py38"
test_number: "1"
os: ubuntu-20.04
- test: "py310"
test_number: "0"
os: ubuntu-22.04
- test: "py310"
test_number: "1"
os: ubuntu-22.04