Skip to content

Commit

Permalink
Merge pull request #9 from PureStake/crystalin-testing-github-actions
Browse files Browse the repository at this point in the history
Crystalin testing GitHub actions
  • Loading branch information
crystalin authored Jul 30, 2020
2 parents 18934e4 + 2662e70 commit 2c1e8f1
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 42 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Tests

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Submodules
run: git submodule update --init --recursive
- name: Cache Rust dependencies
uses: actions/[email protected]
with:
path: target
key: ${{ runner.OS }}-build-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.OS }}-build-
- uses: actions-rs/toolchain@v1
with:
target: wasm32-unknown-unknown
toolchain: nightly
default: true
- name: Build
run: cargo build --verbose --all
- name: Run tests
run: cargo test --verbose --all
40 changes: 0 additions & 40 deletions .gitlab-ci.yml

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@

# ![moonbeam](media/moonbeam-cover.jpg)
[![pipeline status](https://gitlab.com/asapede/moonbeam/badges/master/pipeline.svg)](https://gitlab.com/asapede/moonbeam/-/commits/master)

![Tests](https://github.com/PureStake/moonbeam/workflows/Tests/badge.svg)

Run an Ethereum compatible ~~parachain~~ (blockchain for now, until parachains are available) based on Substrate.

Expand Down

0 comments on commit 2c1e8f1

Please sign in to comment.