Revert "rename vmseries -> swfw" #26
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
# DESCRIPTION: | |
# A workflow used to get Go dependencies and test code | |
# END | |
name: PR CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
branches: [ "main" ] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.20.x' | |
- name: Download Go dependencies | |
run: go get ./... && go mod tidy | |
- name: Check if all dependencies were commited | |
shell: bash | |
run: | | |
if [ "$(git status --porcelain)" ]; then | |
git status | |
exit 1 | |
else | |
exit 0 | |
fi | |
### Uncomment it, when tests are prepared | |
# - name: Test code | |
# run: go test -v ./... |