Skip to content

Commit

Permalink
Move CI to GitHub actions (#740)
Browse files Browse the repository at this point in the history
* Remove Travis CI

* Add GitHub Actions
  • Loading branch information
alexandrnikitin authored Sep 24, 2023
1 parent c94fddc commit a5b9d4e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 12 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build and Test

on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test -c Release -f net6.0 --no-build --verbosity normal
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

0 comments on commit a5b9d4e

Please sign in to comment.