Update dotnet.yml #2
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
# .github/workflows/test-workflow.yml | |
name: Test Workflow | |
on: | |
push: | |
branches: [ "Main" ] | |
pull_request: | |
branches: [ "Main" ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Run a simple command | |
run: echo "GitHub Actions is working!" |