Skip to content

Commit 6c1c780

Browse files
dizzygrandizzy
andauthored
Move to GH Actions (sky-ecosystem#235)
* 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>
1 parent 8144130 commit 6c1c780

File tree

3 files changed

+25
-12
lines changed

3 files changed

+25
-12
lines changed

.github/workflows/tests.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
on: [push, pull_request]
2+
3+
jobs:
4+
tests:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout repository and submodules
8+
uses: actions/checkout@v2
9+
with:
10+
submodules: recursive
11+
12+
- name: Install nix 2.3.6
13+
uses: cachix/install-nix-action@v13
14+
with:
15+
install_url: https://releases.nixos.org/nix/nix-2.3.6/install
16+
nix_path: nixpkgs=channel:nixos-unstable
17+
18+
- name: Use maker cachix
19+
uses: cachix/cachix-action@v10
20+
with:
21+
name: maker
22+
23+
- name: Run tests
24+
run: nix-shell --pure --run 'dapp test'

.travis.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

README.md

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

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

0 commit comments

Comments
 (0)