Skip to content

Commit

Permalink
Create pr-test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
oxygen-dioxide authored Dec 21, 2023
1 parent 690afd5 commit 96991e3
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on:
pull_request:
branches: [ master ]

jobs:
pr-test:
runs-on: ${{ matrix.os.runs-on }}

strategy:
matrix:
os:
- runs-on: windows-latest
arch: win-x64
- runs-on: macos-latest
arch: osx-x64
- runs-on: ubuntu-latest
arch: linux-x64

steps:
- uses: actions/checkout@v1

- name: restore
run: dotnet restore OpenUtau -r ${{ matrix.os.arch }}

- name: test
run: dotnet test OpenUtau.Test

0 comments on commit 96991e3

Please sign in to comment.