-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (35 loc) · 863 Bytes
/
test.yml
File metadata and controls
39 lines (35 loc) · 863 Bytes
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
name: test
on: [push, pull_request]
jobs:
test-windows:
name: windows-latest
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- run: |
iex (irm install.sinjs.com)
sin test -d
shell: pwsh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
test-macos:
name: macos-latest
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- run: |
source <(curl -fsSL install.sinjs.com)
sin test -d
shell: zsh {0}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
test-linux:
name: ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
source <(curl -fsSL install.sinjs.com)
sin test -d
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}