Skip to content

Merge branch 'main' of https://github.com/VahidFarahmandian/jinget #37

Merge branch 'main' of https://github.com/VahidFarahmandian/jinget

Merge branch 'main' of https://github.com/VahidFarahmandian/jinget #37

Workflow file for this run

name: build-ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release --no-build