Skip to content

Commit

Permalink
Run CI tests on windows, macos, and linux
Browse files Browse the repository at this point in the history
type: testing
  • Loading branch information
casey committed Apr 8, 2020
1 parent 9f83661 commit 074a3b3
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,31 @@ name: Rust

on: [push]

# - name: Prepare - macOS
# if: matrix.os == 'macos-latest'
# run: |
# curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
# - name: Update
# run: rustup update stable

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v1
- name: Update
run: rustup update stable
- name: Install
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: clippy
override: true
- name: Version
run: |
rustup --version
Expand Down

0 comments on commit 074a3b3

Please sign in to comment.