Update testing.yml #10
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_all_files | |
on: | |
push: | |
branches: ['stravid87/addingYML'] | |
workflow_dispatch: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
branches: | |
- development | |
jobs: | |
Run_Unit_Tests: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.19' | |
- name: Manually add dependencies | |
run: go get crypto/ecdh | |
- name: "Run Unit Tests" | |
run: go test -v ./... | |
# jobs: | |
# Run_Unit_Tests: | |
# runs-on: windows-latest | |
# steps: | |
# - name: Install Go | |
# uses: actions/setup-go@v5 | |
# - name: checkout | |
# uses: actions/checkout@v4 | |
# - name: Download Go dependencies | |
# run: go mod tidy | |
# - name: "Run Unit Tests" | |
# run: go test -v ./... | |