Skip to content

Commit

Permalink
Add Githug Actions
Browse files Browse the repository at this point in the history
Signed-off-by: Ana Hobden <[email protected]>
  • Loading branch information
Hoverbear committed Sep 11, 2020
1 parent 2a0611b commit 9a07859
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 9a07859

Please sign in to comment.