Skip to content

Commit

Permalink
Move to GH Actions (#235)
Browse files Browse the repository at this point in the history
* 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
dizzy and grandizzy authored Sep 17, 2021
1 parent 8144130 commit 6c1c780
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 12 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/tests.yaml
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'
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Multi Collateral Dai
[![Build Status](https://travis-ci.com/makerdao/dss.svg?branch=master)](https://travis-ci.com/makerdao/dss)
[![codecov](https://codecov.io/gh/makerdao/dss/branch/master/graph/badge.svg)](https://codecov.io/gh/makerdao/dss)
![Build Status](https://github.com/makerdao/dss/actions/workflows/.github/workflows/tests.yaml/badge.svg?branch=master)

This repository contains the core smart contract code for Multi
Collateral Dai. This is a high level description of the system, assuming
Expand Down

0 comments on commit 6c1c780

Please sign in to comment.