Skip to content

Merge pull request #12 from RobBrazier/renovate/docker.io-alpine-2024… #21

Merge pull request #12 from RobBrazier/renovate/docker.io-alpine-2024…

Merge pull request #12 from RobBrazier/renovate/docker.io-alpine-2024… #21

Workflow file for this run

name: Build
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- uses: jdx/mise-action@v2
- run: task test || true # no tests right now - remove when first added
build:
runs-on: ubuntu-24.04
needs: test
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- uses: jdx/mise-action@v2
- run: task build