mirror of
https://github.com/trussed-dev/piv-authenticator.git
synced 2026-06-20 04:16:15 -07:00
Add basic CI workflow
Fixes: https://github.com/trussed-dev/piv-authenticator/issues/36
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
# Copyright (C) Nitrokey GmbH
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
name: CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches: [main]
|
||||
workflow_dispatch:
|
||||
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: Install rust
|
||||
run: rustup show active-toolchain || rustup toolchain install
|
||||
- name: Run checks
|
||||
run: make lint
|
||||
Reference in New Issue
Block a user