This repository has been archived by the owner on Nov 28, 2024. It is now read-only.
build(deps): bump the go_modules group group with 3 updates #327
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: e2e-cli test suite | |
"on": | |
workflow_dispatch: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
checkout-repos-and-run-test-suite: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout mpas repository | |
uses: actions/checkout@v4 | |
- name: Restore Go cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '>=1.20.0' | |
- name: Run test suite | |
run: go test ./e2e-cli --tags=e2e -v -count=1 -run TestBootstrap_gitea |