Fix e2e tests #317
Workflow file for this run
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: Build PR | |
on: [pull_request] | |
jobs: | |
lint: | |
name: Lint | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
env: | |
GO111MODULE: "on" | |
steps: | |
- name: Set up Go 1.22 | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.22 | |
id: go | |
- name: Checkout code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Check license headers | |
run: make validate | |
- name: Run golangci-lint | |
run: make lint | |
build-linux: | |
name: Build Linux | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
env: | |
GO111MODULE: "on" | |
E2E_HUB_USERNAME: ${{ secrets.E2E_HUB_USERNAME }} | |
E2E_HUB_TOKEN: ${{ secrets.E2E_HUB_TOKEN }} | |
steps: | |
- name: Docker version | |
run: docker version | |
- name: Set up Go 1.22 | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.22 | |
id: go | |
- name: Checkout code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Build CLI | |
run: make build | |
- name: Unit Tests | |
run: make test-unit | |
- name: End-to-end Tests | |
run: make e2e |