Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.3 to 7.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6.0.3...v7.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
533 B
YAML
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.14
|
|
|
|
steps:
|
|
- uses: actions/checkout@v7.0.0
|
|
|
|
- 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"
|