mirror of
https://github.com/KhizarImran/backtestingfx.git
synced 2026-07-27 20:17:44 +00:00
6aee7006a5
Adds the two remaining broker test gaps (close_position by id, short position stop-loss fill). CI runs cargo check + cargo test on push/PR to main.
16 lines
239 B
YAML
16 lines
239 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
- run: cargo check
|
|
- run: cargo test
|