We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c60fe70 commit 80ea2b4Copy full SHA for 80ea2b4
.github/workflows/e2e.yml
@@ -7,15 +7,19 @@ jobs:
7
matrix:
8
haproxy_version: ["2.1", "2.2", "2.3"]
9
runs-on: ubuntu-latest
10
+ env:
11
+ BATS_VERSION: v1.4.1
12
steps:
13
- name: Check out code into the Go module directory
14
uses: actions/checkout@v2
15
- name: Downloading required packages
- run: sudo apt-get install bats
- - name: Set up Go 1.16
16
+ run: sudo apt-get install
17
+ - name: Install bats
18
+ run: git clone https://github.com/bats-core/bats-core.git && cd bats-core && git checkout $BATS_VERSION && sudo ./install.sh /usr/local && cd ..
19
+ - name: Set up Go 1.17
20
uses: actions/setup-go@v1
21
with:
- go-version: 1.16
22
+ go-version: 1.17
23
- run: make e2e
24
env:
25
HAPROXY_VERSION: ${{ matrix.haproxy_version }}
0 commit comments