Skip to content

Commit

Permalink
Merge branch 'master' into multiple-card-support
Browse files Browse the repository at this point in the history
  • Loading branch information
bvaisvil committed Jun 6, 2020
2 parents e0c7578 + d022282 commit 8744989
Show file tree
Hide file tree
Showing 8 changed files with 833 additions and 359 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/audit.yml
@@ -0,0 +1,14 @@
name: Security audit
on:
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
21 changes: 18 additions & 3 deletions .github/workflows/build.yml
@@ -1,4 +1,4 @@
name: Build
name: Audit and Build

on:
push:
Expand All @@ -7,10 +7,25 @@ on:
branches: [ master ]

jobs:
clippy:
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Cargo clippy
run: cargo clippy
build:

runs-on: ubuntu-latest

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Build
Expand Down

0 comments on commit 8744989

Please sign in to comment.