Skip to content

chore(deps): update actions/checkout action to v4 - autoclosed #354

chore(deps): update actions/checkout action to v4 - autoclosed

chore(deps): update actions/checkout action to v4 - autoclosed #354

Workflow file for this run

name: Build tags
on: [pull_request]
jobs:
buildtags:
name: tag
runs-on: ubuntu-latest
strategy:
matrix:
buildtag: [disgord_diagnosews]
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get dependencies
run: go mod download
- name: test
run: go test -tags=${{ matrix.buildtag }} -v -race -short ./...