Skip to content

Add AusTS rules citation to readme #26

Add AusTS rules citation to readme

Add AusTS rules citation to readme #26

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