Merge branch 'skipping-improvements' into 'master' #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: main | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ vars.PYTHON_VERSION }} | |
- name: Install build tools | |
run: | | |
sudo apt-get install cloc | |
python -m pip install --upgrade pip pre-commit setuptools tox | |
- name: Run pre-commit | |
run: | | |
pre-commit run --all-files | |
- name: Run tox tests | |
run: | | |
tox |