Skip to content

Merge branch 'main' of https://github.com/666mxvbee/ATM-WebAPI #2

Merge branch 'main' of https://github.com/666mxvbee/ATM-WebAPI

Merge branch 'main' of https://github.com/666mxvbee/ATM-WebAPI #2

Workflow file for this run

name: .NET
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
cache: true
- name: Restore
run: dotnet restore Atm.sln
- name: Build
run: dotnet build Atm.sln -c Release --no-restore
- name: Test
run: dotnet test Atm.sln -c Release --no-build --verbosity normal