mirror of https://github.com/encounter/nod-rs.git
59 lines
1.5 KiB
YAML
59 lines
1.5 KiB
YAML
name: Build
|
|
|
|
on: [ push, pull_request ]
|
|
|
|
jobs:
|
|
check:
|
|
name: Check
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
toolchain: [ stable, 1.51.0, nightly ]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: ${{ matrix.toolchain }}
|
|
override: true
|
|
components: rustfmt, clippy
|
|
- uses: EmbarkStudios/cargo-deny-action@v1
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: check
|
|
args: --all-features
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: clippy
|
|
args: --all-features
|
|
|
|
build:
|
|
name: Build
|
|
strategy:
|
|
matrix:
|
|
platform: [ ubuntu-latest, macos-latest, windows-latest ]
|
|
toolchain: [ stable, 1.51.0, nightly ]
|
|
fail-fast: false
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: ${{ matrix.toolchain }}
|
|
override: true
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: test
|
|
args: --release --all-features
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: build
|
|
args: --release --all-features
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ${{ matrix.platform }}-${{ matrix.toolchain }}
|
|
path: |
|
|
target/release/nodtool
|
|
target/release/nodtool.exe
|