Initial public release

This commit is contained in:
2020-11-03 15:49:12 -06:00
commit b2480ef356
162 changed files with 4397 additions and 0 deletions

9
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,9 @@
name: Tests
on: push
jobs:
test:
runs-on: self-hosted
steps:
- uses: actions/checkout@v1
- name: Run unit tests
run: julia --project=@. -e 'using Pkg; Pkg.test("UnitCommitment")'