Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Crystalin testing GitHub actions #9

Merged
merged 14 commits into from
Jul 30, 2020
Merged
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