mirror of
https://github.com/KhasanovAMdev/ISTU_TEST_LR1.git
synced 2026-02-03 00:19:35 +04:00
Compare commits
4 Commits
d1d057bed5
...
a7b9c3409e
| Author | SHA1 | Date | |
|---|---|---|---|
| a7b9c3409e | |||
| 6e5fa35376 | |||
| ed69e99972 | |||
| de9e401e8e |
31
.github/workflows/main.yml
vendored
Normal file
31
.github/workflows/main.yml
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
name: Autotests CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
|
||||
jobs:
|
||||
test-job:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup .NET
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
dotnet-version: '8.0.x'
|
||||
|
||||
- name: Restore dependencies
|
||||
run: dotnet restore
|
||||
working-directory: ./LR1
|
||||
|
||||
- name: Build
|
||||
run: dotnet build --configuration Release --no-restore
|
||||
working-directory: ./LR1
|
||||
|
||||
- name: Run unit tests
|
||||
run: dotnet test --no-build --verbosity normal
|
||||
working-directory: ./LR1
|
||||
Reference in New Issue
Block a user