mirror of
https://github.com/trussed-dev/trussed-auth.git
synced 2026-06-20 04:16:21 -07:00
This patch implements a basic Auth extension and backend that provides PIN handling. Policies still have to be enforced by the client. Fixes https://github.com/trussed-dev/trussed-auth/issues/1
20 lines
356 B
YAML
20 lines
356 B
YAML
# Copyright (C) Nitrokey GmbH
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Install rust
|
|
run: rustup show
|
|
- name: Install reuse
|
|
run: sudo apt-get install --yes reuse
|
|
- name: Execute checks
|
|
run: make ci
|