generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 3
51 lines (49 loc) · 1.12 KB
/
test-latest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: 'test-latest'
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: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, macos-14, oracle-aarch64]
steps:
- uses: actions/checkout@v4
- name: Should not be on path
run: |
if ! which rye;
then
exit 0
else
exit 1
fi
- name: Setup rye
uses: ./
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- run: rye sync
working-directory: __tests__/fixtures/rye-project
- name: Rye path is not added to .profile
run: |
if ! grep -q "rye" ~/.profile;
then
exit 0
else
exit 1
fi
test-without-github-token:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup rye
uses: ./
- run: rye sync
working-directory: __tests__/fixtures/rye-project