Skip to content

chore: run buildifier #71

chore: run buildifier

chore: run buildifier #71

Workflow file for this run

---
name: "CI"
"on":
## Events: Pushes on Main
push:
branches:
- main
paths:
- docs/**/*.*
- example/**/*.*
- graalvm/**/*.*
- internal/**/*.*
- tools/**/*.*
- "*.bzl"
- "*.bazel"
concurrency:
# Cancel previous actions from the same PR: https://stackoverflow.com/a/72408109
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
dependency-graph:
name: "Dependency Graph"
continue-on-error: true
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1
with:
egress-policy: audit
- name: "Setup: Checkout"
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: "Report: Dependency Graph"
continue-on-error: true
uses: advanced-security/maven-dependency-submission-action@5d0f9011b55d6268922128af45275986303459c3 # v4.0.3
build:
name: "Build (${{ matrix.label }})"
uses: ./.github/workflows/module.build.yml
strategy:
fail-fast: false
matrix:
runner: [ubuntu-latest]
main: [true]
label: ["Ubuntu"]
labs: [false]
flags: ["--config=linux"]
testlabel: ["Ubuntu"]
coverage: [false]
include:
# Bazel 7
- runner: ubuntu-latest
label: Ubuntu
labs: false
main: true
coverage: false
flags: --config=linux
testlabel: Ubuntu
- runner: macos-latest
label: macOS
labs: false
main: true
coverage: true
flags: --config=mac
testlabel: macOS
- runner: windows-2022
label: Windows
labs: false
main: true
coverage: false
flags: --config=windows
testlabel: Windows
secrets: inherit
with:
runner: ${{ matrix.runner }}
label: ${{ matrix.label }}
labs: ${{ matrix.labs }}
main: ${{ matrix.main }}
flags: ${{ matrix.flags }}
coverage: ${{ matrix.coverage }}