mirror of
https://github.com/urbit/ares.git
synced 2024-11-26 20:58:02 +03:00
c045bc6705
Co-authored-by: Edward Amsden <edward@tlon.io>
29 lines
419 B
YAML
29 lines
419 B
YAML
name: Ares
|
|
|
|
on:
|
|
push:
|
|
branches: [ "status" ]
|
|
pull_request:
|
|
branches: [ "status" ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: rust/ares
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Format
|
|
run: cargo fmt --check
|
|
- name: Build
|
|
run: cargo build --verbose
|
|
- name: Run tests
|
|
run: cargo test --verbose
|