refactor!: Rename property to IsFlagAtBasePosition for clarity in flag location #233
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Capture.The.Flag | |
on: | |
push: | |
branches: | |
- dev | |
pull_request: | |
branches: | |
- dev | |
env: | |
DOTNET_VERSION: '8.x' | |
jobs: | |
unit_testing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: ${{ env.DOTNET_VERSION }} | |
- name: Execute unit tests | |
run: | | |
dotnet test ./tests/Application.Tests/CTF.Application.Tests.csproj -c Release |