mirror of
https://github.com/nix-community/emacs-overlay.git
synced 2026-01-25 05:51:50 -08:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.1 to 4.2.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.2.1...v4.2.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
17 lines
343 B
YAML
17 lines
343 B
YAML
name: Checks
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
|
|
jobs:
|
|
flake-show:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
|
steps:
|
|
- uses: actions/checkout@v4.2.2
|
|
- uses: cachix/install-nix-action@v30
|
|
- id: set-matrix
|
|
name: Evaluate flake
|
|
run: nix flake show --all-systems
|