2022-09-20 22:16:46 -07:00
|
|
|
name: CI
|
2021-02-18 12:38:32 -08:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags-ignore:
|
|
|
|
- 'v*'
|
|
|
|
branches:
|
2022-09-23 23:18:45 -07:00
|
|
|
- "master"
|
2021-02-18 12:38:32 -08:00
|
|
|
pull_request:
|
2022-09-23 23:18:45 -07:00
|
|
|
workflow_call:
|
|
|
|
secrets:
|
2022-10-03 11:55:53 -07:00
|
|
|
CODECOV_TOKEN:
|
2022-09-23 23:18:45 -07:00
|
|
|
required: true
|
2021-02-18 12:38:32 -08:00
|
|
|
|
2022-09-21 12:26:45 -07:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-02-18 12:38:32 -08:00
|
|
|
jobs:
|
2022-09-20 22:16:46 -07:00
|
|
|
ci:
|
|
|
|
uses: smallstep/workflows/.github/workflows/goCI.yml@main
|
2022-09-22 15:30:27 -07:00
|
|
|
with:
|
2022-09-26 15:48:21 -07:00
|
|
|
os-dependencies: "libpcsclite-dev"
|
2022-09-23 23:18:45 -07:00
|
|
|
run-gitleaks: true
|
|
|
|
run-codeql: true
|
2022-10-03 11:55:53 -07:00
|
|
|
secrets: inherit
|