Skip to content

Split out lint, test and build from SonarCloud actions #1

Split out lint, test and build from SonarCloud actions

Split out lint, test and build from SonarCloud actions #1

Workflow file for this run

name: Unit Test, Lint and Build

Check failure on line 1 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: generate_coverage_with_sonarcloud
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
schedule:
- cron: "1 1 2 * *"
permissions:
pull-requests: read # allows SonarCloud to decorate PRs with analysis results
jobs:
build_and_test:
name: "Lint Test and Build"
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Test and Build
run: make build
generate_coverage_with_sonarcloud:
name: "Analyse with SonarCloud"
runs-on: ubuntu-24.04