monolith/.github/workflows/build.yml

25 lines
409 B
YAML
Raw Normal View History

2020-04-05 01:05:49 +02:00
name: Build
on:
push:
branches: [ master ]
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
rust:
- stable
runs-on: ${{ matrix.os }}
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v2
- name: Build
run: cargo build --all --locked --verbose