Skip to content

refactor: various ante handler improvements #26

refactor: various ante handler improvements

refactor: various ante handler improvements #26

Workflow file for this run

name: Unit Tests
on:
pull_request:
push:
branches: [master]
permissions:
pull-requests: write
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.21
- name: Run Unit Tests
run: make test-unit
scan:
needs: unit-tests
if: github.event_name == 'pull_request'
uses: circlefin/circle-public-github-workflows/.github/workflows/pr-scan.yaml@v1
release-sbom:

Check failure on line 31 in .github/workflows/unit-tests.yaml

View workflow run for this annotation

GitHub Actions / Unit Tests

Invalid workflow file

The workflow is not valid. .github/workflows/unit-tests.yaml (Line: 31, Col: 3): Error calling workflow 'circlefin/circle-public-github-workflows/.github/workflows/attach-release-assets.yaml@v1'. The workflow is requesting 'contents: write', but is only allowed 'contents: none'.
needs: unit-tests
if: github.event_name == 'push'
uses: circlefin/circle-public-github-workflows/.github/workflows/attach-release-assets.yaml@v1