Skip to content

Update actions/checkout action to v6 (#21) #83

Update actions/checkout action to v6 (#21)

Update actions/checkout action to v6 (#21) #83

Workflow file for this run

---
name: unit tests
on:
- push
- pull_request
jobs:
test:
strategy:
fail-fast: false
matrix: # https://github.com/actions/runner-images#available-images
os: [macos-10.15, macos-11, macos-12]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Install dependencies
run: |
python3 --version
python3 -m pip install --upgrade pip
pip3 install tox
- name: Test with tox
run: tox -e py,style