Skip to content

build(deps): bump semver from 1.0.18 to 1.0.24 #268

build(deps): bump semver from 1.0.18 to 1.0.24

build(deps): bump semver from 1.0.18 to 1.0.24 #268

Workflow file for this run

name: build (nix-shell)
on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-24.05
- name: Build
run: nix-shell --command "cargo build --verbose --all-features"
- name: Run tests
run: nix-shell --command "cargo test --verbose --all-features"
- name: Run cargo fmt
run: nix-shell --command "cargo fmt --all -- --check"