24 lines
416 B
YAML
24 lines
416 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'archi-${{ env.PROJECT_TO_TEST }}'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
with: ${{ env.PROJECT_TO_TEST }}
|
|
|
|
- uses: actions/setup-dotnet@v3
|
|
with:
|
|
dotnet-version: '7.0.x'
|
|
- name: "🏗️ Build"
|
|
run: dotnet build
|
|
- name: "✅ Test"
|
|
run: dotnet test
|