Skip to content

Commit

Permalink
conditional on package changes (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
wd60622 authored Oct 2, 2024
1 parent e271284 commit 19c88ea
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
name: Workflow for Codecov conjugate
on: [push, pull_request]

on:
push:
paths:
- "conjugate/**"
- "pyproject.toml"

pull_request:
paths:
- "conjugate/**"
- "pyproject.toml"

jobs:
run:
runs-on: ubuntu-latest
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
name: Tests

on:
- push
push:
paths:
- "conjugate/**"
- "pyproject.toml"


jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.10', '3.11', '3.12']
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 19c88ea

Please sign in to comment.