Skip to content

Commit

Permalink
Prepare for open-source release (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
nitinkedia7 authored May 8, 2024
1 parent 0633efa commit 6d98aa8
Show file tree
Hide file tree
Showing 161 changed files with 418,204 additions and 694,225 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: "Run linter"
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
packages: write
defaults:
run:
shell: bash -l {0}
jobs:
sanity_check:
runs-on: "ubuntu-latest"
steps:
- name: "Checkout Repository"
uses: actions/checkout@v3
- name: Install Conda environment from environment-dev.yml
uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment-dev.yml
- name: "Run black lint"
run: make lint/black
- name: "Run isort check"
run: make lint/isort
23 changes: 0 additions & 23 deletions .github/workflows/pylint.yml

This file was deleted.

18 changes: 16 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ celerybeat.pid
.env
.venv
env/
env_2/
venv/
ENV/
env.bak/
Expand Down Expand Up @@ -160,6 +161,19 @@ cython_debug/
#.idea/

# Custom
simulator_output*
cache
cache_random_forrest
cache_linear_regression
cache*
simulator_output
wandb
.cache
train.zip
profiling_outputs
profiling_outputs_*
experiments/profiling/mlp.csv
experiments/profiling/attention.csv
config_optimizer_output
config_optimizer_output_tmpfs
profiler_traces*
experiments/profiling/get_profiled_data_from_trace.ipynb
env_3
Loading

0 comments on commit 6d98aa8

Please sign in to comment.