Skip to content

chore(deps): update ghcr.io/uniget-org/images/systemd:ubuntu24.04 doc… #1354

chore(deps): update ghcr.io/uniget-org/images/systemd:ubuntu24.04 doc…

chore(deps): update ghcr.io/uniget-org/images/systemd:ubuntu24.04 doc… #1354

Workflow file for this run

name: build-go
on:
push:
branches:
- main
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- "make/go.mk"
- ".github/workflows/build-go.yml"
- "Dockerfile"
pull_request:
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- "make/go.mk"
- ".github/workflows/build-go.yml"
- "Dockerfile"
workflow_dispatch:
permissions:
contents: read
jobs:
lint:
name: lint
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 0
- name: Lint
run: |
docker buildx bake lint
unit-tests:
name: unit-tests
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 0
- name: Unit tests
run: |
docker buildx bake test
cli-test:
name: cli-test
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 0
- name: Run CLI tests
run: |
docker buildx bake cli-test