Skip to content

💚 fix-ci (testing.unit): Installing the Templ CLI tool be… #9

💚 fix-ci (testing.unit): Installing the Templ CLI tool be…

💚 fix-ci (testing.unit): Installing the Templ CLI tool be… #9

Workflow file for this run

name: Unit Testing With Gotestsum
on:
push:
branches:
- "main"
- "dev"
- "release/*"
permissions:
contents: read
defaults:
run:
shell: bash
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Actions Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup Go Compiler
uses: actions/setup-go@v5
with:
go-version: '1.22.x'
- name: Install Dependencies
run: |
make depsget-templ depsget depsget-gotestsum
- name: Build
run: |
make templ build
- name: Test
run: |
make test