Merge pull request #633 from gwenn/actions

Add github actions script
This commit is contained in:
gwenn 2020-02-18 20:28:19 +01:00 committed by GitHub
commit 97478c2b39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

36
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,36 @@
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
platform:
# - { target: x86_64-pc-windows-gnu, os: windows-latest }
- { target: x86_64-pc-windows-msvc, os: windows-latest }
# - { target: x86_64-unknown-linux-gnu, os: ubuntu-latest }
runs-on: ${{ matrix.platform.os }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v2
with:
target: ${{ matrix.platform.target }}
default: true
profile: minimal
toolchain: stable
override: true
- run: cargo build --features bundled
- run: cargo test --features bundled