We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d566aae + bfacc06 commit aba6d85Copy full SHA for aba6d85
.github/workflows/tests.yml
@@ -7,7 +7,6 @@ on:
7
branches: [ master ]
8
9
jobs:
10
-
11
tests:
12
name: Test code
13
runs-on: ubuntu-latest
@@ -34,6 +33,9 @@ jobs:
34
33
- name: Check out code into the Go module directory
35
uses: actions/checkout@v4
36
+ - name: Ensure go.sum exists
37
+ run: go mod tidy
38
+
39
- name: Checkout to the latest tag
40
run: |
41
# Fetch all tags
@@ -88,5 +90,4 @@ jobs:
88
90
if: ${{ github.event_name == 'push' && matrix.go == '1.24.x' }} # only when built from master with latest stable go
89
91
run: make DEVEL=1 packagecloud-autobuilds
92
env:
- PACKAGECLOUD_TOKEN: ${{ secrets.PACKAGECLOUD_TOKEN }}
93
+ PACKAGECLOUD_TOKEN: ${{ secrets.PACKAGECLOUD_TOKEN }}
0 commit comments