mirror of
https://github.com/Llewellynvdm/zoxide.git
synced 2024-11-20 03:50:54 +00:00
27 lines
574 B
YAML
27 lines
574 B
YAML
|
name: ci
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
ci:
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
strategy:
|
||
|
matrix:
|
||
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions-rs/install@v0.1
|
||
|
if: ${{ matrix.os == 'windows-latest' }}
|
||
|
with:
|
||
|
crate: cargo-audit
|
||
|
version: latest
|
||
|
- uses: cachix/install-nix-action@v12
|
||
|
if: ${{ matrix.os != 'windows-latest' }}
|
||
|
with:
|
||
|
nix_path: nixpkgs=channel:nixos-stable
|
||
|
- run: make test
|