Files
mam-contract/.gitea/workflows/test.yml
kratisto 493ba9c515
Some checks failed
golangci-lint / lint (push) Failing after 1m12s
Test / test (push) Failing after 2m15s
chore: migrate to gitea
2026-01-27 00:15:21 +01:00

27 lines
530 B
YAML

name: Test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # all history for all branches and tags
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
check-latest: true
cache: false
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y make
- name: Run make check-all
run: make test