Skip to content

Commit

Permalink
update mod files
Browse files Browse the repository at this point in the history
  • Loading branch information
WillAbides committed Aug 10, 2023
1 parent 2a44bae commit 256fc27
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@ jobs:
- name: create_go_mod 1.15
run: |
cat >> go.mod << EOF
mkdir -p tmp/go_mod_1_15
cat >> tmp/go_mod_1_15/go.mod << EOF
module example.com/some-module
go 1.15
Expand All @@ -195,7 +196,7 @@ jobs:
name: install 1.15 from go.mod
uses: ./
with:
go-version-file: 'go.mod'
go-version-file: 'tmp/go_mod_1_15/go.mod'
ignore-local: true
- name: outputs
run: |
Expand All @@ -215,7 +216,8 @@ jobs:
[[ '${{steps.setup_go_1_15_from_go_mod.outputs.GOTOOLDIR}}' == *"$installed_version"* ]]
- name: create_go_mod 1.21rc1
run: |
cat >> go.mod << EOF
mkdir -p tmp/go_mod_1_21rc1
cat >> tmp/go_mod_1_21rc1/go.mod << EOF
module example.com/some-module
go 1.21rc1
Expand All @@ -228,7 +230,7 @@ jobs:
name: install 1.21rc1 from go.mod
uses: ./
with:
go-version-file: 'go.mod'
go-version-file: 'tmp/go_mod_1_21rc1/go.mod'
ignore-local: true
- name: outputs
run: |
Expand Down

0 comments on commit 256fc27

Please sign in to comment.