mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-10 10:02:38 +03:00
28 lines
531 B
YAML
28 lines
531 B
YAML
on:
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
|
|
name: CI
|
|
|
|
env:
|
|
RUST_BACKTRACE: 1
|
|
|
|
jobs:
|
|
build-fmt-clippy-test:
|
|
name: fmt, clippy, test --release
|
|
runs-on: [self-hosted]
|
|
timeout-minutes: 90
|
|
env:
|
|
FORCE_COLOR: 1
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
clean: "true"
|
|
|
|
- name: Earthly version
|
|
run: earthly --version
|
|
|
|
- name: install dependencies, build, run zig tests, rustfmt, clippy, cargo test --release
|
|
run: ./ci/safe-earthly.sh +test-all
|