Skip to content

CI triggered from @magicxyyz of debug-block #1479

CI triggered from @magicxyyz of debug-block

CI triggered from @magicxyyz of debug-block #1479

Workflow file for this run

name: CI
run-name: CI triggered from @${{ github.actor }} of ${{ github.head_ref }}
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
jobs:
run-tests:
runs-on: ubuntu-4
steps:
- uses: actions/checkout@v5
with:
submodules: recursive
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
- name: Test
run: make test
run-linter:
runs-on: ubuntu-4
steps:
- uses: actions/checkout@v5
with:
submodules: true
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
- name: Test
run: make lint