2021-04-08 19:15:49 +02:00
|
|
|
name: "CI Nix"
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
name: Rust project
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-06-26 18:37:00 +02:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install Nix
|
|
|
|
uses: DeterminateSystems/nix-installer-action@main
|
2021-04-08 19:15:49 +02:00
|
|
|
- run: nix develop -c rustc --version
|
2023-06-26 18:37:00 +02:00
|
|
|
- run: nix run
|