Skip to content

Commit e88285f

Browse files
Add CI workflow
1 parent ad84c67 commit e88285f

2 files changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
check:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: dtolnay/rust-toolchain@stable
13+
- name: Format
14+
run: cargo fmt --check
15+
- name: Test
16+
run: cargo test
17+
- name: CLI contract
18+
run: make check

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# GATL AD Lab
22

3+
Status: external numeric check harness for `gatl-core` `risk-models` artifacts.
4+
35
GATL AD Lab is an external numeric check harness for `gatl-core` risk-model
46
artifacts. It consumes `gatl risk-models` JSON, evaluates the typed scalar RPN
57
expression, executes the exported reverse derivative instruction skeleton, and

0 commit comments

Comments
 (0)