Skip to content

Commit

Permalink
Nix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
3Rafal committed Jun 22, 2023
1 parent 106156f commit a96a9ce
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/nix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: "Nix"

on:
push:
branches: [ master ]
paths-ignore:
- '**.md'
- '**.txt'
- '.git*'
- 'doc/**'
- 'emacs/**'
- 'vim/**'
- '**/emacs-lint.yml'
pull_request:
branches: [ master ]
paths-ignore:
- '**.md'
- '**.txt'
- '.git*'
- 'doc/**'
- 'emacs/**'
- 'vim/**'
- '**/emacs-lint.yml'

jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: true
- name: nix
uses: cachix/install-nix-action@v21
with:
nix_path: nixpkgs=channel:nixos-unstable
- run: nix develop -c dune runtest -p merlin-lib,dot-merlin-reader,merlin

0 comments on commit a96a9ce

Please sign in to comment.