mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-14 10:22:38 +00:00
20 lines
516 B
YAML
20 lines
516 B
YAML
name: Test Suite
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
release-tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Run release tests with all features
|
|
run: cargo test --release --all --all-features --exclude ef_tests
|
|
debug-tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Run debug tests with all features
|
|
run: cargo test --all --all-features --exclude ef_tests
|
|
- name: Check formatting with cargo fmt
|
|
run: cargo fmt --all -- check
|