Merge pull request #9 from thomasasfk/refactor-test-coverage #23
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: | |
pull_request: | |
push: | |
branches: [master] | |
jobs: | |
main: | |
strategy: | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] | |
os: [ubuntu-latest] | |
arch: [x64] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: install tox | |
run: python -m pip install --upgrade tox | |
- name: install cf_speedtest dependencies | |
run: python -m pip install -r requirements.txt | |
- name: run tox | |
run: tox -e py |