Skip to content

Sync from star

Sync from star #119

Workflow file for this run

name: "CI"
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
strategy:
matrix:
min-version: [true, false]
msrv:
- rust-version: 1.62.1
features: full
- rust-version: 1.62.1
features: ""
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: cachix/install-nix-action@v26
with:
nix_path: nixpkgs=channel:nixos-unstable
- if: ${{ matrix.min-version }}
run: nix develop . -c cargo update -Z minimal-versions
- run: nix develop .#msrv -c cargo msrv verify --rust-version ${{ matrix.msrv.rust-version }} --no-default-features --features "${{ matrix.msrv.features }}"
env:
CARGO_NET_GIT_FETCH_WITH_CLI: true # workaround slow index fetch: https://github.com/rust-lang/cargo/issues/11014
- run: nix flake check --keep-going --print-build-logs