Skip to content

refactor: modularize configuration system and implement safe atomic file I/O #1

refactor: modularize configuration system and implement safe atomic file I/O

refactor: modularize configuration system and implement safe atomic file I/O #1

Workflow file for this run

name: CI Pipeline
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build-and-test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.26'
- name: Run Vet
run: go vet ./...
- name: Run Tests with Race Detector
run: go test -race -v ./...