Skip to content

Commit

Permalink
switch to github action
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmeijer committed Sep 22, 2023
1 parent 1d4497f commit 6e37ba8
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 4 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: build and test

on:
push:
pull_request:
branches: [ main ]
paths:
- '**.cs'
- '**.csproj'

env:
DOTNET_VERSION: '7.0' # The .NET SDK version to use

jobs:
build-and-test:

name: build-and-test-${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

- name: Install dependencies
run: dotnet restore

- name: Build
run: dotnet build --configuration Release --no-restore

- name: Test
run: dotnet test --no-restore --verbosity normal
4 changes: 0 additions & 4 deletions .travis.yml

This file was deleted.

0 comments on commit 6e37ba8

Please sign in to comment.