Skip to content

Commit

Permalink
Update python-CI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-raccoon-97 authored Nov 21, 2024
1 parent 3310cbd commit 0b1bca9
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/python-CI.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
name: CI
on: [push, pull_request]
on:
pull_request:
push:
branches:
- main

jobs:
tests:
ci:
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
poetry-version: ["latest", "1.8.3"]
os: [ubuntu-22.04, macos-latest, windows-latest]
poetry-version: ["latest"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand All @@ -23,4 +27,4 @@ jobs:
run: poetry install
- name: Test with pytest
run: |
poetry run pytest
poetry run pytest

0 comments on commit 0b1bca9

Please sign in to comment.