monolith/.github/workflows/build_macos.yml

23 lines
356 B
YAML
Raw Normal View History

2020-04-05 21:32:25 +02:00
name: macOS
2020-04-05 01:05:49 +02:00
on:
push:
branches: [ master ]
jobs:
build:
strategy:
matrix:
os:
- macos-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