Skip to content

Merge pull request #16 from pelasgus/pelasgus/readme #3

Merge pull request #16 from pelasgus/pelasgus/readme

Merge pull request #16 from pelasgus/pelasgus/readme #3

Workflow file for this run

# workflow.yml
# Author: D.A.Pelasgus
name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
with:
nix_path: nixpkgs=channel:nixos-unstable
- run: |
nix-shell ./etc/shells/nix/rust.nix
nix-shell ./etc/shells/nix/tauri.nix
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose