ladybird/.github/workflows/lint-code.yml
sideshowbarker 675d6072f7 CI: Bump lint-code.yml to the 2026.06.02 image, like the rest of CI
Otherwise, without this change, the Lint Code job intermittently fails —
for the same cause described in 61d0fca133: rustup tries to auto-install
1.96.0 the first time a proxied cargo runs — and depending on timing,
that can lead to a crate ending up seeing rustc, but not cargo.
2026-06-07 23:59:02 +02:00

26 lines
533 B
YAML

name: Lint Code
on:
push:
branches: [master]
pull_request:
jobs:
lint:
runs-on: blacksmith-2vcpu-ubuntu-2404
if: github.repository == 'LadybirdBrowser/ladybird'
container:
image: ghcr.io/ladybirdbrowser/ladybird-ci:2026.06.02
steps:
- uses: actions/checkout@v6.0.3
- name: Set Up Environment
uses: ./.github/actions/setup
with:
os: 'Linux'
arch: 'x86_64'
type: 'lint'
- name: Lint
run: "${GITHUB_WORKSPACE}/Meta/lint-ci.sh"