Skip to content

ci: add minimal CI (noop) and CodeQL (#1) #5

ci: add minimal CI (noop) and CodeQL (#1)

ci: add minimal CI (noop) and CodeQL (#1) #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled]
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
noop:
if: ${{ (github.event_name == 'push' && startsWith(github.ref,'refs/heads/main')) || (github.event_name == 'pull_request' && github.event.pull_request.draft == false && contains(github.event.pull_request.labels.*.name,'ready')) }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: echo "CI OK"