Skip to content

temp: temporarily disable the condition. #10

temp: temporarily disable the condition.

temp: temporarily disable the condition. #10

Workflow file for this run

name: ci
on:
push:
branches:
- main
concurrency:
group: ci
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
- name: Build
run: go build -v -o ./server ./cmd/server
- name: Test
run: go test -v ./cmd/server