-
Notifications
You must be signed in to change notification settings - Fork 2
52 lines (39 loc) · 1.26 KB
/
dotnet.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: 📦 Setup Dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: 📦 Dotnet Restore
run: dotnet restore
- name: 📦 Dotnet Build
run: dotnet build --no-restore
- name: 🔧 Setup Cache Folder
run: mkdir -p ~/image-cache
- name: 🔧 Try Get Cache
id: image-cache
uses: actions/cache@v1
with:
path: ~/image-cache
key: image-cache-${{ runner.os }}
- name: 🔧 If Cache miss
if: steps.image-cache.outputs.cache-hit != 'true'
run: |
docker pull mcr.microsoft.com/mssql/server:2019-CU18-ubuntu-20.04
docker save -o ~/image-cache/mssql.tar alpine
- name: 🔧 If Cache hit
if: steps.image-cache.outputs.cache-hit == 'true'
run: docker load -i ~/image-cache/mssql.tar
- name: 🤞 Dotnet Test
run: dotnet test --no-build --verbosity normal