Files
wish-serve/.gitea/workflows/test.yaml
Yves Biener 293932534d
All checks were successful
Go Project Action / Spell-check and test go project (push) Successful in 33s
rem(action): depth 0 configuration
There is no benefit in doing this at all
2024-10-06 11:43:17 +02:00

28 lines
639 B
YAML

name: Go Project Action
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
jobs:
run:
name: Spell-check and test go project
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Go installation
uses: actions/setup-go@v5
with:
go-version: 1.23.x
- name: Spell checking
uses: crate-ci/typos@v1.25.0
with:
config: ./.typos-config
- name: Install dependencies
run: go get .
- name: Run tests
run: go test ./...