Skip to content

chore(deps): update ⬆️ aqua-packages #147

chore(deps): update ⬆️ aqua-packages

chore(deps): update ⬆️ aqua-packages #147

Workflow file for this run

---
name: test
on:
pull_request:
# push:
# branches:
# - main
# tags:
# - v*
workflow_dispatch:
workflow_call:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
# https://github.com/magnetikonline/action-golang-cache
- name: Setup Golang with cache
uses: magnetikonline/action-golang-cache@797f193169d3c8ba6f60d90f50ecdadd2583fbd8 # tag=v3
with:
go-version-file: go.mod
- name: mage-tidy
uses: magefile/mage-action@3b833fb24c0d19eed3aa760b9eb285b4b84f420f # v2
with:
version: latest
args: go:tidy
- name: mage-test
uses: magefile/mage-action@3b833fb24c0d19eed3aa760b9eb285b4b84f420f # v2
with:
version: latest
args: go:testsum ./...
env:
# Race conditions will be hit due to the cli driven tasks and binaries being called.
GOTEST_DISABLE_RACE: 1