Skip to content

Admin dashboard

Admin dashboard #95

Workflow file for this run

name: Nutmix
on:
pull_request:
branches: [master, signet, admin_dashboard]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: ScribeMD/[email protected]
- uses: actions/setup-go@v5
with:
go-version: '1.22.1'
cache-dependency-path: subdir/go.sum
- name: Go Toolchain info
run: |
go version
- name: Install dependencies
run: go get -t ./...
- name: Build
run: |
go build -v ./...
- name: Test
run: |
go test ./...