Skip to content

Commit

Permalink
Add Linux CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ThadHouse committed May 27, 2024
1 parent 3d6bd46 commit 06c428d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,22 @@ jobs:
run: dotnet publish -r ${{ matrix.target }}
- name: Run tests
run: dotnet test

build-linux:

runs-on: ubuntu-22.04
strategy:
matrix:
dotnet-version: [ '8.x' ]
target: [ 'linux-x64' ]

steps:
- uses: actions/checkout@v4
- name: Setup dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Build ${{ matrix.target }}
run: dotnet publish -r ${{ matrix.target }}
- name: Run tests
run: dotnet test

0 comments on commit 06c428d

Please sign in to comment.