Skip to content

CI triggered from @InoMurko of celestia_config #2

CI triggered from @InoMurko of celestia_config

CI triggered from @InoMurko of celestia_config #2

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-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.20.x
- name: Test
run: make test
run-linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.20.x
- name: Test
run: make lint