Skip to content

demos: fix typo in filename #180

demos: fix typo in filename

demos: fix typo in filename #180

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
- name: Set CI ENV
run: export ENV=CI
- name: Build
run: make cli
- name: Test
run: go test -v -count=1 ./...