Skip to content

update mergify rules to include all tests #1039

update mergify rules to include all tests

update mergify rules to include all tests #1039

Workflow file for this run

name: "Test"
on:
pull_request:
push:
branches:
- master
- staging
- trying
jobs:
tests:
strategy:
matrix:
os: [ubuntu-latest]
# FIXME macos garbage currently collect also nix-shell that runs the test
#os: [ ubuntu-latest, macos-latest ]
variants: [stable, latest, bash4]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@V27
with:
nix_path: nixpkgs=channel:nixpkgs-unstable
extra_nix_config: |
experimental-features = nix-command flakes
- run: "nix run --accept-flake-config .#test-runner-${{ matrix.variants }}"