Skip to content

Commit

Permalink
Run tests on windows and linux
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienros authored Feb 1, 2024
1 parent 2ffbebb commit 039a56a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
name: Build

on:
push:
branches: [ master ]

pull_request:
branches: [ master ]

jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1

steps:
- name: Checkout source code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Test
run: dotnet test ./Irony.Tests/040.Irony.Tests.VsTest.csproj -c release

0 comments on commit 039a56a

Please sign in to comment.