BUILD/MINOR: go.mod: upgrade dependencies #469
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: e2e | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: HAProxy | |
strategy: | |
matrix: | |
haproxy_version: ["2.1", "2.2", "2.3"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Downloading required packages | |
run: sudo apt-get install bats | |
- name: Set up Go 1.18 | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.18 | |
- run: make e2e | |
env: | |
HAPROXY_VERSION: ${{ matrix.haproxy_version }} |