Skip to content

Commit

Permalink
Merge pull request #1 from hfern/hgf/ci
Browse files Browse the repository at this point in the history
Add Github test workflows
  • Loading branch information
hfern authored Nov 3, 2024
2 parents 1ec7589 + b4af099 commit a2e9a70
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Python Tests

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: |
poetry install
- name: Lint
run: |
make test-format
- name: Test
run: |
make test-python
- name: Check Types
run: |
make test-pyre

0 comments on commit a2e9a70

Please sign in to comment.