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

27 lines
472 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
working-directory: simlib
run: cargo build -v
# TODO: uncomment this after fixing tests
# - name: Unit tests
# working-directory: simlib
# run: cargo test -v