1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-22 22:38:08 +00:00

feat(ci): add checks to github actions

This commit is contained in:
vdovhanych 2021-04-30 12:17:58 +02:00 committed by Tomas Susanka
parent 40bd66ded4
commit 2397afffd4

44
.github/workflows/prebuild.yml vendored Normal file
View File

@ -0,0 +1,44 @@
name: "Prebuild checks"
on: [pull_request]
jobs:
style_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: cachix/install-nix-action@v13
with:
nix_path: nixpkgs=channel:nixos-unstable
name: "Run script"
- run: nix-shell --run "poetry install"
- run: nix-shell --run "poetry run make style_check"
defs_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
with:
submodules: "recursive"
fetch-depth: 0
- uses: cachix/install-nix-action@v13
with:
nix_path: nixpkgs=channel:nixos-unstable
name: "Run script"
- run: nix-shell --run "poetry install"
- run: nix-shell --run "poetry run make defs_check"
gen_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
with:
submodules: "recursive"
fetch-depth: 0
- uses: cachix/install-nix-action@v13
with:
nix_path: nixpkgs=channel:nixos-unstable
name: "Run script"
- run: nix-shell --run "poetry install"
- run: nix-shell --run "poetry run make gen_check"