File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed
Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change 2323 uses : actions/checkout@v5
2424 with :
2525 fetch-depth : 0
26+
27+ - name : Export Secrets
28+ run : |
29+ echo "RHSM_PASS=${{ secrets.RHSM_PASS }}" >> $GITHUB_ENV
30+ echo "RHSM_USER=${{ secrets.RHSM_USER }}" >> $GITHUB_ENV
31+ env :
32+ RHSM_PASS : ${{ secrets.RHSM_PASS }}
33+ RHSM_USER : ${{ secrets.RHSM_USER }}
34+
2635 - name : Get commit message
2736 id : get_commit
2837 run : |
5362 with :
5463 fetch-depth : 0
5564
65+ - name : Set up Go
66+ uses : actions/setup-go@v5
67+ with :
68+ go-version : " 1.24.5"
69+ check-latest : true
70+ cache : true
71+
5672 - name : Install system dependencies (bc + docker)
5773 run : |
5874 sudo apt-get update -qq
6783 - name : Check code formatting
6884 run : make fmt
6985
70- - name : Run unit tests (entire repo)
86+ - name : Run unit tests
7187 run : make test
7288
7389 - name : Generate coverage
You can’t perform that action at this time.
0 commit comments