Add AusTS rules citation to readme #26
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: Format check and test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
format-and-test: | |
strategy: | |
matrix: | |
python-version: ["3.10"] | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Collect test data and run tests | |
env: | |
BEARER_TOKEN: ${{ secrets.BEARER_TOKEN }} | |
run: | | |
python -m pip install -r requirements-test.txt | |
tox -e collect_test_data | |
tox | |