mirror of
https://github.com/enso-org/enso.git
synced 2024-12-21 07:21:30 +03:00
c80ee14c60
Original commit: 5f355507a7
22 lines
484 B
YAML
22 lines
484 B
YAML
name: Build (MacOS, Linux, Windows)
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [windows-latest, macOS-latest, ubuntu-latest]
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Install Rust Nightly Toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: nightly
|
|
override: true
|
|
- name: Run cargo check
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: check
|