Skip to content

Refactor/clang style (#175) #18

Refactor/clang style (#175)

Refactor/clang style (#175) #18

Workflow file for this run

name: Main
on:
push:
branches:
- "main"
paths:
- ".github/workflows/**"
- "Makefile"
- ".clang-format"
- ".clang-tidy"
- "src/**"
- "extern/**"
- "test/**"
- "CMakeLists.txt"
- "Dockerfile.glibc"
- "Dockerfile.musl"
concurrency:
group: prerelease
cancel-in-progress: true
permissions:
contents: write
packages: write
jobs:
build:
uses: ./.github/workflows/build.yml
lint:
uses: ./.github/workflows/lint.yml
needs: build
test:
uses: ./.github/workflows/test.yml
needs: build
prerelease:
uses: ./.github/workflows/prerelease.yml
needs:
- build
- lint
- test
secrets: inherit