chore(deps): update golang:1.21 docker digest to 81811f8 #1395
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: Pre submits cli | |
on: | |
pull_request: | |
branches: ["main"] | |
workflow_dispatch: | |
# Used in combination with schedule.cli.yml | |
# to avoid duplicating the test code. | |
schedule: | |
- cron: "25 6 * * 5" | |
permissions: read-all | |
jobs: | |
pre-submit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
- name: setup-go | |
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 | |
with: | |
go-version-file: "go.mod" | |
- name: Save event name | |
env: | |
EVENT_NAME: ${{ github.event_name }} | |
run: | | |
echo "$EVENT_NAME" > ./event_name.txt | |
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 | |
with: | |
name: event_name | |
path: ./event_name.txt | |
- name: Run tests for verifier | |
run: | | |
set -euo pipefail | |
make regression-test |