Fix bug where the configurations did not default to the defaults #49
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, windows-latest, macos-latest ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install_hatch | |
run: pipx install hatch | |
- name: run_tests | |
run: hatch run test | |
- name: build_dist | |
run: hatch build |