Skip to content

Commit

Permalink
duplicate stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Jul 3, 2024
1 parent fe13cad commit 6012d0c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,19 @@ name: Automatic Tests
push:
branches:
- main
paths: &id001
paths:
- lenskit/**.py
- '**pyroject.toml'
- requirements*.txt
- data/**
- .github/workflows/test.yml
pull_request:
paths: *id001
paths:
- lenskit/**.py
- '**pyroject.toml'
- requirements*.txt
- data/**
- .github/workflows/test.yml
concurrency:
group: test-${{github.ref}}
cancel-in-progress: true
Expand Down
4 changes: 2 additions & 2 deletions lkdev/workflows/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ def workflow():
return {
"name": "Automatic Tests",
"on": {
"push": {"branches": ["main"], "paths": FILTER_PATHS},
"pull_request": {"paths": FILTER_PATHS},
"push": {"branches": ["main"], "paths": list(FILTER_PATHS)},
"pull_request": {"paths": list(FILTER_PATHS)},
},
"concurrency": {
"group": "test-${{github.ref}}",
Expand Down

0 comments on commit 6012d0c

Please sign in to comment.