Skip to content

feat: initialize project structure and add core functionality #1

feat: initialize project structure and add core functionality

feat: initialize project structure and add core functionality #1

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.25"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Vet
run: go vet ./...
- name: Test
run: go test ./... -v -race
- name: Build
run: go build -o flkr .