Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
Co-authored-by: benlipkin <lipkinb@mit.edu>
Co-authored-by: aalok-sathe <asathe@mit.edu>
Co-authored-by: neuranna <a.ivanova@gatech.edu>
  • Loading branch information
3 people committed May 13, 2024
0 parents commit 1d919a4
Show file tree
Hide file tree
Showing 84 changed files with 17,574 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Tests

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
run_tests:

runs-on: ubuntu-latest

steps:
- name: checkout repo
uses: actions/checkout@v3.0.0
with:
fetch-depth: 1

- name: run integration tests
run: make integration
21 changes: 21 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Run Static Testing

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
run_tests:

runs-on: ubuntu-latest

steps:
- name: checkout repo
uses: actions/checkout@v3.0.0
with:
fetch-depth: 1

- name: run type checker and static analysis
run: make static
21 changes: 21 additions & 0 deletions .github/workflows/style.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Check Code Style

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
run_tests:

runs-on: ubuntu-latest

steps:
- name: checkout repo
uses: actions/checkout@v3.0.0
with:
fetch-depth: 1

- name: confirm code style adheres to standards
run: make style
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
*.egg-info
.DS_Store
.Rhistory
__pycache__
html/
output/
.Rproj.user
analyses/scripts/data/
config/
*.csv
Loading

0 comments on commit 1d919a4

Please sign in to comment.