Skip to content
This repository has been archived by the owner on Jul 11, 2024. It is now read-only.

chore(deps): update actions/setup-go action to v5 - autoclosed #335

chore(deps): update actions/setup-go action to v5 - autoclosed

chore(deps): update actions/setup-go action to v5 - autoclosed #335

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@v5
with:
go-version: 1.19
- name: Check out code into the Go module directory
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get dependencies
run: go mod download
- name: test
run: go test -tags=${{ matrix.buildtag }} -v -race -short ./...