-
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (26 loc) · 630 Bytes
/
ci.yml
File metadata and controls
33 lines (26 loc) · 630 Bytes
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
name: CI
on:
push:
branches: [ main ]
paths-ignore:
- 'README.md'
pull_request:
branches: [ main ]
paths-ignore:
- 'README.md'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Build
run: dotnet build --configuration Release
working-directory: ./src/FileSizeFromBase64.NET
- name: Run unit tests
run: dotnet test --configuration Release
working-directory: ./tests/FileSizeFromBase64.NET.Tests