Skip to content

feat: Added new index page theme #17

feat: Added new index page theme

feat: Added new index page theme #17

Workflow file for this run

name: Test
on:
workflow_dispatch:
push:
branches:
- main
paths:
- "cmd/**/*"
- "internal/**/*"
- "test/**/*"
- "main.go"
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
env:
GO_VERSION: "1.22.x"
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-20.04
- ubuntu-22.04
- windows-2019
- windows-2022
- macos-12
- macos-13
- macos-14
runs-on: ${{ matrix.os }}
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "${{ env.GO_VERSION }}"
- name: Set up Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install templ
run: go install github.com/a-h/templ/cmd/templ@latest
- name: Build
run: |
go generate ./...
go build -v
- name: Run test
run: go test -v ./test/...