forked from stakira/OpenUtau
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (33 loc) · 824 Bytes
/
pr-test.yml
File metadata and controls
39 lines (33 loc) · 824 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
on:
pull_request:
branches: [ master ]
jobs:
pr-test:
runs-on: ${{ matrix.os.runs-on }}
strategy:
fail-fast: false
matrix:
os:
- runs-on: windows-latest
arch: win-x64
- runs-on: windows-11-arm
arch: win-arm64
- runs-on: macos-13
arch: osx-x64
- runs-on: macos-15
arch: osx-arm64
- runs-on: ubuntu-latest
arch: linux-x64
- runs-on: ubuntu-24.04-arm
arch: linux-arm64
steps:
- uses: actions/checkout@v1
- uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
- name: restore
run: dotnet restore OpenUtau -r ${{ matrix.os.arch }}
- name: test
run: dotnet test OpenUtau.Test