Compare commits

...

2 Commits

Author SHA1 Message Date
Henry Mercer
d559e4df65 Add setup Go 2022-11-15 20:25:05 +00:00
Henry Mercer
9684086377 Turn off fast fail for debugging 2022-11-15 19:44:08 +00:00
2 changed files with 8 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ on:
- main - main
- releases/v1 - releases/v1
- releases/v2 - releases/v2
- henrymercer/require-cli-2.6.3-debugging
pull_request: pull_request:
types: types:
- opened - opened
@@ -23,6 +24,7 @@ on:
jobs: jobs:
unset-environment: unset-environment:
strategy: strategy:
fail-fast: false
matrix: matrix:
include: include:
- os: ubuntu-20.04 - os: ubuntu-20.04
@@ -48,6 +50,9 @@ jobs:
uses: ./.github/prepare-test uses: ./.github/prepare-test
with: with:
version: ${{ matrix.version }} version: ${{ matrix.version }}
- uses: actions/setup-go@v3
with:
go-version: "^1.13.1"
- uses: ./../action/init - uses: ./../action/init
with: with:
db-location: ${{ runner.temp }}/customDbLocation db-location: ${{ runner.temp }}/customDbLocation

View File

@@ -2,6 +2,9 @@ name: "Test unsetting environment variables"
description: "An end-to-end integration test that unsets some environment variables" description: "An end-to-end integration test that unsets some environment variables"
operatingSystems: ["ubuntu"] operatingSystems: ["ubuntu"]
steps: steps:
- uses: actions/setup-go@v3
with:
go-version: "^1.13.1"
- uses: ./../action/init - uses: ./../action/init
with: with:
db-location: ${{ runner.temp }}/customDbLocation db-location: ${{ runner.temp }}/customDbLocation