End-to-end tests #401
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: End-to-end tests | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '30 6 * * *' | |
jobs: | |
build: | |
name: "Build + tests" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21.8 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Build | |
run: | | |
make build | |
- name: Run unit tests | |
run: | | |
go install github.com/kyoh86/[email protected] | |
set -o pipefail | |
make end-to-end-test | richgo testfilter | |
env: | |
RICHGO_FORCE_COLOR: 1 | |
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }} | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.56 | |
args: --issues-exit-code=1 --timeout 10m | |
only-new-issues: false | |
# the cache is already managed above, enabling it here | |
# gives errors when extracting | |
skip-pkg-cache: true | |
skip-build-cache: true |