Skip to content

test win

test win #19

Workflow file for this run

name: Lint
on:
pull_request:
permissions:
contents: read
pull-requests: write
jobs:
lint-swift:
if: false
name: Swift
runs-on: ubuntu-24.04 # "Noble Numbat"
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- uses: ./.github/actions/bazel-linux-build
name: Build SwiftLint with Bazel
env:
CI_BAZELRC_FILE_CONTENT: ${{ secrets.CI_BAZELRC_FILE_CONTENT }}
- name: Lint
run: ./bazel-bin/swiftlint lint --reporter github-actions-logging --strict 2> /dev/null
lint-markdown:
if: false
name: Markdown
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- name: Lint
uses: DavidAnson/markdownlint-cli2-action@30a0e04f1870d58f8d717450cc6134995f993c63 # v21.0.0
with:
globs: |
CHANGELOG.md
CONTRIBUTING.md
README.md
lint-actions:
if: false
name: Actions
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- name: Register problem matcher
run: |
curl -sSL https://raw.githubusercontent.com/rhysd/actionlint/main/.github/actionlint-matcher.json > actionlint-matcher.json
echo "::add-matcher::actionlint-matcher.json"
- name: Lint
uses: docker://rhysd/actionlint:latest
with:
args: -color