This repository has been archived on 2025-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
corten/.github/workflows/rust.yml

19 lines
387 B
YAML
Raw Permalink Normal View History

2020-02-06 16:37:23 -05:00
name: Rust
2020-02-08 17:00:18 -05:00
on: [push, pull_request]
2020-02-06 16:37:23 -05:00
jobs:
build:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
platform: [ubuntu-16.04, ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- name: Update
run: rustup update
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose