Skip to content

[TEST] GHA/build_ci_multi: test debian/fedora/master in PRs #114

[TEST] GHA/build_ci_multi: test debian/fedora/master in PRs

[TEST] GHA/build_ci_multi: test debian/fedora/master in PRs #114

Workflow file for this run

# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
#
# SPDX-License-Identifier: curl
name: 'Source'
'on':
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
permissions: {}
jobs:
linters:
name: 'spellcheck, linters'
runs-on: ubuntu-latest
steps:
- name: 'install prereqs'
run: /home/linuxbrew/.linuxbrew/bin/brew install actionlint zizmor typos-cli
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- name: 'zizmor GHA'
env:
GH_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
run: |
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
zizmor --pedantic .github/workflows/*.yml
- name: 'actionlint'
run: |
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
export SHELLCHECK_OPTS='--exclude=1090,1091 --enable=avoid-nullary-conditions,deprecate-which'
actionlint --version
actionlint .github/workflows/*.yml
- name: 'typos'
run: |
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
typos --version
typos