Fix go mod download in checkout action (#1128)

* Fix go mod download in checkout

* Make CI filechange checker .github/actions

Co-authored-by: Keepers <ryanfkeepers@gmail.com>
This commit is contained in:
Abin Simon 2022-10-12 05:00:34 +05:30 committed by GitHub
parent 8309e3978e
commit 9d5c53299d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -55,7 +55,7 @@ runs:
if: steps.cache.outputs.cache-hit != 'true' if: steps.cache.outputs.cache-hit != 'true'
# cover all the bases, just to be make sure we loaded everything we'll use # cover all the bases, just to be make sure we loaded everything we'll use
run: | run: |
go mod download -v go mod download -x
go build -o compile go build -o compile
go test -v -c -o compile_test go test -v -c -o compile_test
shell: bash shell: bash

View File

@ -35,6 +35,7 @@ jobs:
- 'docs/**' - 'docs/**'
actions: actions:
- '.github/workflows/**' - '.github/workflows/**'
- '.github/actions/**'
- name: Check dorny for changes in src filepaths - name: Check dorny for changes in src filepaths
id: srcchecker id: srcchecker