Skip to content

feat: Set up continuous integration #14

feat: Set up continuous integration

feat: Set up continuous integration #14

Workflow file for this run

name: Build and Test
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: "7.0.x"
- name: Build
run: |
cd DotnetFoundation
dotnet build --configuration Release
- name: Test
run: |
cd DotnetFoundation
dotnet test --configuration Release --no-build