2
0
mirror of https://github.com/Y2Z/monolith synced 2024-11-10 19:10:29 +00:00
monolith/.github/workflows/build_gnu_linux.yml

23 lines
361 B
YAML
Raw Normal View History

2020-04-05 19:32:25 +00:00
name: GNU/Linux
2020-04-04 23:05:49 +00:00
on:
push:
branches: [ master ]
jobs:
build:
strategy:
matrix:
os:
- ubuntu-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