Merge pull request #17 from Nitrokey/release-016 #47
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 Python dependencies | |
run: | | |
python -m pip install toml | |
- name: Install rust | |
run: | | |
rustup show | |
rustup target add thumbv7em-none-eabihf | |
rustup target add thumbv8m.main-none-eabi | |
- name: Execute checks | |
run: make ci |