Skip to content

vendor: update modules #28

vendor: update modules

vendor: update modules #28

Workflow file for this run

name: test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
push:
pull_request:
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Test
uses: ./test_action
inline:
runs-on: ubuntu-latest
strategy:
matrix:
go:
- "1.21"
- "1.20"
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
-
name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v3
-
name: Test
run: go test -v .