Youngjoon Lee 45a2152bba
refactor(blendnet): rename mix to blend (#63)
* rename mix to blend

* update ci

* add missing dir
2024-12-13 13:31:28 +09:00

27 lines
472 B
YAML

name: CI
on:
pull_request:
branches:
- "*"
push:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
simlib:
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