This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
Update README to indicate that the repo is now archived (#3849) #3916
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
--- | |
## Workflow to lint and test | |
name: pull-request | |
permissions: | |
contents: read | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'main' | |
- '8**' | |
- '7.17' | |
jobs: | |
test: | |
name: Run Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version-file: .go-version | |
cache: true | |
cache-dependency-path: go.sum | |
- name: build | |
run: .ci/scripts/build-test.sh | |
- uses: actions/upload-artifact@v3 # upload test results | |
if: success() || failure() # run this step even if previous step failed | |
with: | |
name: test-results | |
path: outputs/TEST-unit-*.xml |