Some checks failed
Go Build Multi-Platform / build (arm, freebsd) (push) Failing after 2s
Go Build Multi-Platform / build (arm, linux) (push) Failing after 2s
Go Build Multi-Platform / build (arm64, freebsd) (push) Failing after 2s
CodeQL Advanced / Analyze (go) (autobuild, go) (push) Failing after 4s
Go Test Multi-Platform / Test (ubuntu-latest, amd64) (push) Failing after 3s
Go Build Multi-Platform / build (amd64, windows) (push) Failing after 3s
Go Build Multi-Platform / build (arm, windows) (push) Failing after 2s
Go Build Multi-Platform / build (arm64, darwin) (push) Failing after 2s
Go Build Multi-Platform / build (arm64, linux) (push) Failing after 2s
Go Build Multi-Platform / build (arm64, windows) (push) Failing after 5s
Go Build Multi-Platform / build (amd64, freebsd) (push) Failing after 34s
Go Build Multi-Platform / build (amd64, darwin) (push) Failing after 36s
Go Build Multi-Platform / build (amd64, linux) (push) Failing after 32s
Go Build Multi-Platform / Create Release (push) Has been skipped
Go Test Multi-Platform / Test (ubuntu-latest, arm64) (push) Successful in 43s
Go Revive Lint / lint (push) Successful in 40s
Run Gosec / tests (push) Successful in 42s
Go Test Multi-Platform / Test (macos-latest, amd64) (push) Has been cancelled
Go Test Multi-Platform / Test (windows-latest, amd64) (push) Has been cancelled
Go Test Multi-Platform / Test (macos-latest, arm64) (push) Has been cancelled
43 lines
999 B
YAML
43 lines
999 B
YAML
name: "CodeQL Advanced"
|
|
|
|
on:
|
|
push:
|
|
branches: ["main", "tinygo"]
|
|
pull_request:
|
|
branches: ["main", "tinygo"]
|
|
schedule:
|
|
- cron: "30 21 * * 6"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
analyze:
|
|
name: Analyze (go)
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
security-events: write
|
|
packages: read
|
|
actions: read
|
|
contents: read
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
language: [go]
|
|
build-mode: [autobuild]
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@cf1bb45a277cb3c205638b2cd5c984db1c46a412
|
|
with:
|
|
languages: ${{ matrix.language }}
|
|
build-mode: ${{ matrix.build-mode }}
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@cf1bb45a277cb3c205638b2cd5c984db1c46a412
|
|
with:
|
|
category: "/language:${{ matrix.language }}"
|
|
|