2024-08-01 02:07:52 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- "*"
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
|
2024-09-16 09:50:20 +00:00
|
|
|
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
|
2024-09-16 09:50:20 +00:00
|
|
|
- name: Build
|
2024-08-01 02:07:52 +00:00
|
|
|
working-directory: mixnet
|
2024-09-16 09:50:20 +00:00
|
|
|
run: cargo build -v
|
|
|
|
- name: Unit tests
|
2024-08-01 02:07:52 +00:00
|
|
|
working-directory: mixnet
|
2024-09-16 09:50:20 +00:00
|
|
|
run: cargo test -v
|