Skip to content

feat(ormus): #14 - implement logger with slog package #10

feat(ormus): #14 - implement logger with slog package

feat(ormus): #14 - implement logger with slog package #10

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, edited, reopened, synchronize, ready_for_review]
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Install dependencies
run: go mod tidy
- name: Test
run: make test
- name: Format
run: make format
- name: Lint
run: make lint