nomos-simulations/.github/workflows/ci.yaml

26 lines
418 B
YAML
Raw Normal View History

2024-08-01 02:07:52 +00:00
name: CI
on:
pull_request:
branches:
- "*"
push:
branches: [master]
env:
CARGO_TERM_COLOR: always
2024-08-01 02:07:52 +00:00
jobs:
mixnet:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Build
2024-08-01 02:07:52 +00:00
working-directory: mixnet
run: cargo build -v
- name: Unit tests
2024-08-01 02:07:52 +00:00
working-directory: mixnet
run: cargo test -v