Skip to content

Update description of the current feature set #73

Update description of the current feature set

Update description of the current feature set #73

name: CI
on:
push:
branches:
- '**'
pull_request:
jobs:
check:
name: check, test and build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.60
- name: Run Tests
run: go test ./... -v
- name: Build Project
run: go build -v -o ocs ./cmd