Skip to content

feat: release pipeline #7

feat: release pipeline

feat: release pipeline #7

Workflow file for this run

name: 'CI'
on:
push:
branches:
- main
- dev
pull_request: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v4
with:
global-json-file: './global.json'
- run: dotnet --version
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build --no-restore