This repository has been archived by the owner on Oct 19, 2023. It is now read-only.
Update T544.cs (#209) #259
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: Test | |
on: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
branches: [ main, develop ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
# Checkout | |
steps: | |
- uses: actions/checkout@v3 | |
# Setup | |
- name: Setup Test | |
uses: actions/setup-dotnet@v3 | |
# Restore packages | |
- name: Restore dependencies | |
run: dotnet restore | |
# Test | |
- name: Test | |
run: dotnet test |