Skip to content

Double the size of the example dataset #5

Double the size of the example dataset

Double the size of the example dataset #5

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, macos-latest-xlarge ]
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