-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
workflow change: Separate lint from test workflow (#463)
* remove old scripts and add submodule for upload scripts * separate lint from test.yml * fix test.yml * update gitmodules * remove old git submodule
- Loading branch information
1 parent
3de1f50
commit a64312e
Showing
3 changed files
with
24 additions
and
13 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Pull Request | ||
on: pull_request | ||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: 'stable' | ||
- run: go version | ||
|
||
- name: Run tidy | ||
run: make tidy | ||
|
||
- name: Run fmt | ||
run: go fmt ./... | ||
|
||
- name: Run linter | ||
run: make lint | ||
|
||
- name: Fail if changes | ||
run: git diff-index --exit-code HEAD |
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
Submodule tod_scripts
updated
2 files
+3 −0 | add_to_xml_test_report.py | |
+56 −0 | merge_ansible_results.py |