Skip to content

Commit

Permalink
Once more with environment vars set in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jomann09 committed Feb 14, 2023
1 parent 8d6d0ad commit c11d745
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
go-version: 1.19

- name: Setup Prereqs
run: DEBIAN_FRONTEND=noninteractive apt-get update -y && apt-get install -y alien make
run: apt-get update -y && apt-get install -y alien make
env:
DEBIAN_FRONTEND: noninteractive

- name: Build & Test
run: make build && make test
Expand All @@ -49,7 +51,9 @@ jobs:
go-version: 1.19

- name: Setup Prereqs
run: DEBIAN_FRONTEND=noninteractive apt-get update -y && apt-get install -y alien make
run: apt-get update -y && apt-get install -y alien make
env:
DEBIAN_FRONTEND: noninteractive

- name: Build & Test
run: make build && make test
Expand All @@ -76,7 +80,9 @@ jobs:
go-version: 1.19

- name: Setup Prereqs
run: DEBIAN_FRONTEND=noninteractive apt-get update -y && apt-get install -y alien make
run: apt-get update -y && apt-get install -y alien make
env:
DEBIAN_FRONTEND: noninteractive

- name: Build & Test
run: make build && make test
Expand All @@ -103,7 +109,9 @@ jobs:
go-version: 1.19

- name: Setup Prereqs
run: DEBIAN_FRONTEND=noninteractive apt-get update -y && apt-get install -y alien make
run: apt-get update -y && apt-get install -y alien make
env:
DEBIAN_FRONTEND: noninteractive

- name: Build & Test
run: make build && make test
Expand Down

0 comments on commit c11d745

Please sign in to comment.