-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a GitHub actions workflow to run our tests when a PR is proposed or updated. Update Makefile's .PHONY list to include all of our targets. Update README.md with instructions on how to run tests and update some stale text. Closes: #13
- Loading branch information
Showing
3 changed files
with
36 additions
and
3 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: Run Pull Request CI Verification | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: registry.suse.com/bci/golang:1.21-openssl | ||
|
||
steps: | ||
- name: Checkout PR sources | ||
uses: actions/checkout@v4 | ||
with: | ||
path: telemetry | ||
|
||
- name: Run tests in verbose mode | ||
run: cd telemetry && make test-verbose |
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
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