Skip to content

Commit

Permalink
Switch to hatch CI
Browse files Browse the repository at this point in the history
  • Loading branch information
golmschenk committed Jan 28, 2024
1 parent c41833d commit 3896cdf
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 29 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
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
29 changes: 0 additions & 29 deletions .github/workflows/build_wheels.yml

This file was deleted.

0 comments on commit 3896cdf

Please sign in to comment.