Temporarily remove Windows tests #17
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: build_and_test | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
name: build_and_test_on_${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, macos-latest ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: ensure_pipx_on_macos | |
if: runner.os == 'macOS' | |
run: | | |
brew install pipx | |
pipx ensurepath | |
- name: install_hatch | |
run: pipx install hatch | |
- name: run_tests | |
run: hatch run test | |
- name: build_dist | |
run: hatch build |