-
Notifications
You must be signed in to change notification settings - Fork 415
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Move to GH Actions * Pin Nix version to 2.3.6 * Run CI actions on all branches and PRs Co-authored-by: grandizzy <grandizzy@localhost>
- Loading branch information
Showing
3 changed files
with
25 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository and submodules | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Install nix 2.3.6 | ||
uses: cachix/install-nix-action@v13 | ||
with: | ||
install_url: https://releases.nixos.org/nix/nix-2.3.6/install | ||
nix_path: nixpkgs=channel:nixos-unstable | ||
|
||
- name: Use maker cachix | ||
uses: cachix/cachix-action@v10 | ||
with: | ||
name: maker | ||
|
||
- name: Run tests | ||
run: nix-shell --pure --run 'dapp test' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters