remove the support to awsx #65
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: CI | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
env: | |
GO_VERSION: '1.17' | |
GOLANGCI_LINT_VERSION: 'v1.46.2' | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 | |
- name: Setup Go | |
uses: actions/setup-go@37335c7bb261b353407cff977110895fa0b4f7d8 # v2.1.3 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@5c56cd6c9dc07901af25baab6f2b0d9f3b7c3018 # v2.5.2 | |
with: | |
version: ${{ env.GOLANGCI_LINT_VERSION }} | |
skip-go-installation: true | |
args: --build-tags integration --verbose --print-resources-usage --timeout 5m | |
- name: Install tools | |
run: make install-tools-ci | |
- name: Lint | |
run: make ci-lint | |
test: | |
name: Test | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 | |
- name: Setup Go | |
uses: actions/setup-go@37335c7bb261b353407cff977110895fa0b4f7d8 # v2.1.3 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Up | |
uses: ./.github/actions/up | |
- name: Run integration tests | |
run: | | |
make docker-ci-test |