Bump github.com/gosimple/slug from 1.14.0 to 1.15.0 in /app #535
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Testing | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
testing: | |
name: Test- and linting | |
runs-on: ubuntu-24.04 | |
defaults: | |
run: | |
working-directory: app | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
go-version: 1.22 | |
# Caching go modules to speed up the run | |
- uses: actions/[email protected] | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
# | |
# If you seek for more static checks and code quality, check out | |
# https://github.com/golangci/golangci-lint | |
# | |
# Linters that might be useful (for sure): | |
# - ineffassign (also used by goreportcard) | |
# - misspell (also used by goreportcard) | |
# | |
- name: Run go fmt | |
if: runner.os != 'Windows' | |
run: diff -u <(echo -n) <(gofmt -d -s .) | |
- name: Run go vet | |
run: make vet | |
- name: Run staticcheck | |
run: make staticcheck | |
compile: | |
name: Compile application | |
runs-on: ubuntu-24.04 | |
needs: [testing] | |
defaults: | |
run: | |
working-directory: app | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
go-version: 1.22 | |
# Caching go modules to speed up the run | |
- uses: actions/[email protected] | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Build | |
run: make build |