Skip to content

ci: bumps and nits, add arm64 #160

ci: bumps and nits, add arm64

ci: bumps and nits, add arm64 #160

Workflow file for this run

name: validate
on:
push:
tags:
- v*
branches:
- main
- release-*
pull_request:
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v5
with:
go-version: 1.25.x
- name: install deps
run: |
sudo apt -q update
sudo apt -q install libseccomp-dev
- uses: golangci/golangci-lint-action@v8
with:
version: v2.4
codespell:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- name: install deps
# Version of codespell bundled with Ubuntu will become old, so use pip.
# OTOH, we want to pin it to specific version to avoid breaking CI.
run: pip install --break-system-packages codespell==v2.4.1
- name: run codespell
run: codespell
all-done:
needs:
- lint
- codespell
runs-on: ubuntu-24.04
steps:
- run: echo "All jobs completed"