Skip to content

Commit

Permalink
Merge pull request #1 from matter-labs/fix-signing
Browse files Browse the repository at this point in the history
Fix signing
  • Loading branch information
popzxc authored Nov 5, 2020
2 parents a1789fb + 80739f6 commit bdf9f43
Show file tree
Hide file tree
Showing 5 changed files with 157 additions and 65 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: CI

on:
pull_request:
branches:
- '*'

jobs:
fmt:
name: Rustfmt
runs-on: ubuntu-latest

steps:
- name: Checkout sources
uses: actions/checkout@v2

- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
profile: minimal
override: true

- name: Run rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check

test:
name: Test
runs-on: ubuntu-latest

steps:
- name: Checkout sources
uses: actions/checkout@v2

- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true

- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --examples --all

- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: --all
Loading

0 comments on commit bdf9f43

Please sign in to comment.