Skip to content

Merge pull request #334 from smallstep/dependabot/github_actions/all-… #664

Merge pull request #334 from smallstep/dependabot/github_actions/all-…

Merge pull request #334 from smallstep/dependabot/github_actions/all-… #664

Workflow file for this run

name: CI
on:
push:
tags-ignore:
- "**"
branches:
- main
pull_request:
types:
- opened
- synchronize
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
actionci:
uses: ./.github/workflows/actionci.yml
permissions:
contents: read
actions: read
security-events: write
lint-dummy-app: # NOTE(@azazeal): this check is here to verify that .golangci.yml is valid
name: Lint dummy app
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
submodules: true
- name: Run Linter
uses: golangci/golangci-lint-action@ba0d7d2ec06a0ea1cb5fa41b2e4a3ab91d21278a # v9.3.0
with:
working-directory: lintapp
version: latest
verify: true
args: --config=../.golangci.yml