Skip to content

Merge pull request #19 from Byndyusoft/feature/fix-yml #50

Merge pull request #19 from Byndyusoft/feature/fix-yml

Merge pull request #19 from Byndyusoft/feature/fix-yml #50

Workflow file for this run

name: push
on:
- push
jobs:
push:
name: push
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
env:
DOTNET_NOLOGO: true
steps:
- name: checkout
uses: actions/checkout@v2
- name: install dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: install packages
run: dotnet restore
- name: build
run: dotnet build
- name: test
run: dotnet test