Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Saalvage authored Nov 24, 2024
1 parent 582bc73 commit 1df4647
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Continuous Integration

on:
push:
pull_request:
branches: [master]

jobs:
build:
name: Build ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
configuration: [Release, Debug]
include:
- name: Windows x64
os: windows-latest
- name: Windows x86
os: windows-latest
additional_args: -a x86
- name: Linux
os: ubuntu-latest
- name: MacOS
os: macos-latest

steps:
- uses: actions/checkout@v4

- uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.x.x

- run: dotnet test -c ${{ matrix.configuration }} ${{ matrix.additional_args }}


0 comments on commit 1df4647

Please sign in to comment.