mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-17 15:29:21 +00:00
28 lines
534 B
YAML
28 lines
534 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
tags-ignore:
|
|
- 'v*'
|
|
branches:
|
|
- "master"
|
|
pull_request:
|
|
workflow_call:
|
|
secrets:
|
|
CODECOV_TOKEN:
|
|
required: true
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
ci:
|
|
uses: smallstep/workflows/.github/workflows/goCI.yml@main
|
|
with:
|
|
only-latest-golang: false
|
|
os-dependencies: 'libpcsclite-dev'
|
|
run-codeql: true
|
|
test-command: 'V=1 make test'
|
|
secrets: inherit
|