Added Linux as a pre-req, and link for Windows users to go get WSL. #113
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: Tests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.11"] | |
steps: | |
- name: Checkout actions | |
uses: actions/checkout@v3 | |
- name: Init environment | |
uses: ./.github/actions/init-environment | |
- name: Run tests | |
run: pytest |