Skip to content

Code complete for January #91

Code complete for January

Code complete for January #91

Workflow file for this run

name: CI
on:
push:
tags-ignore:
- 'v*'
branches:
- "master"
pull_request:
workflow_call:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Install OS dependencies
run: |
sudo apt-get update && sudo apt-get install -y libpcsclite-dev
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.19
check-latest: true
cache: true
# - name: Configure Linter
# run: |
# curl -LO https://raw.githubusercontent.com/smallstep/workflows/master/.golangci.yml
# - name: Lint
# uses: golangci/golangci-lint-action@v3
# with:
# version: v1.50
# args: --timeout=30m
# skip-pkg-cache: true
# - name: Test
# run: |
# go test ./...
- name: Build
run: |
go build cmd/step-ca/main.go