|
|
@ -1,11 +1,11 @@
|
|
|
|
name: Build
|
|
|
|
name: Build
|
|
|
|
on:
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
|
|
|
|
branches:
|
|
|
|
|
|
|
|
- master
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- master
|
|
|
|
|
|
|
|
schedule:
|
|
|
|
|
|
|
|
- cron: '00 01 * * *'
|
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
check:
|
|
|
@ -49,7 +49,7 @@ jobs:
|
|
|
|
|
|
|
|
|
|
|
|
test:
|
|
|
|
test:
|
|
|
|
name: Test Suite
|
|
|
|
name: Test Suite
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
uses: actions/checkout@v2
|
|
|
@ -60,7 +60,7 @@ jobs:
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
profile: minimal
|
|
|
|
toolchain: stable
|
|
|
|
toolchain: ${{ matrix.rust }}
|
|
|
|
override: true
|
|
|
|
override: true
|
|
|
|
|
|
|
|
|
|
|
|
- name: Cache cargo registry
|
|
|
|
- name: Cache cargo registry
|
|
|
@ -86,6 +86,10 @@ jobs:
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
command: test
|
|
|
|
command: test
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
|
|
|
|
rust: [stable, nightly]
|
|
|
|
|
|
|
|
|
|
|
|
lints:
|
|
|
|
lints:
|
|
|
|
name: Lints
|
|
|
|
name: Lints
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|