Skip to content

Commit

Permalink
Add a scheduled test for latest rye version
Browse files Browse the repository at this point in the history
  • Loading branch information
eifinger committed Feb 8, 2024
1 parent 958ae1b commit 8802820
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test-setup-cache:
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/test-latest-scheduled.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: 'test-latest-scheduled'
on:
pull_request:
push:
branches:
- main
schedule:
- cron: "0 0 * * *"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test-rye-sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup rye
uses: ./
- run: rye sync
working-directory: __tests__/fixtures/rye-project
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
Expand Down

0 comments on commit 8802820

Please sign in to comment.