remove ci/cd

This commit is contained in:
2026-04-12 22:59:59 +02:00
committed by GitHub
parent 09d2fd3a88
commit bbb797d9b9

View File

@@ -1,39 +0,0 @@
name: ci
on:
push:
branches:
- main
pull_request:
jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: verify dependencies
run: go mod download
- name: generate templ files
run: go run github.com/a-h/templ/cmd/templ@v0.3.1001 generate
- name: vet
run: go vet ./...
- name: test
run: go test ./...
- name: build
run: go build ./...
- name: staticcheck
run: go run honnef.co/go/tools/cmd/staticcheck@latest ./...