Skip to content

Commit

Permalink
Merge pull request skade#42 from timberio/add-ga
Browse files Browse the repository at this point in the history
Add Github Actions.
  • Loading branch information
skade authored Sep 16, 2020
2 parents 2a0611b + 9a07859 commit 8ee545d
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 9 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/suite.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
on: [push, pull_request]

name: Continuous integration

jobs:
test-x86_64-unknown-linux-gnu:
name: Test Suite (x86_64-unknown-linux-gnu)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: test

test-x86_64-unknown-windows-msvc:
name: Test Suite (x86_64-unknown-windows-msvc)
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: test

test-x86_64-unknown-darwin:
name: Test Suite (x86_64-unknown-darwin)
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: test
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

0 comments on commit 8ee545d

Please sign in to comment.