Skip to content

Commit

Permalink
adding skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
dfridovi committed Nov 13, 2024
1 parent 12c785c commit 9040c8e
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .JuliaFormatter.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
margin = 90
always_for_in = true
import_to_using = true
remove_extra_newlines = true
whitespace_typedefs = false
whitespace_ops_in_indices = true
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: test
on: [push]
jobs:
tests:
name: test
runs-on: ${{ matrix.os }}
env:
PATH_LICENSE_STRING: "2830898829&Courtesy&&&USR&45321&5_1_2021&1000&PATH&GEN&31_12_2025&0_0_0&6000&0_0"
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-runtest@v1
with:
prefix: "xvfb-run"
16 changes: 16 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name = "MCPSolver"
uuid = "6c9e26cb-9263-41b8-a6c6-f4ca104ccdcd"
authors = ["David Fridovich-Keil <[email protected]>"]
version = "0.1.0"

[deps]
BlockArrays = "8e7c35d0-a365-5155-bbbb-fb81a777f24e"
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7"
TrajectoryGamesBase = "ac1ac542-73eb-4349-ae1b-660ab3609574"

[compat]
BlockArrays = "0.16.43"
DataStructures = "0.18.20"
Symbolics = "6.19.0"
TrajectoryGamesBase = "0.3.10"
5 changes: 5 additions & 0 deletions src/MCPSolver.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module MCPSolver

greet() = print("Hello World!")

end # module MCPSolver
3 changes: 3 additions & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[deps]
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
4 changes: 4 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
using Test
using MCPSolver

@test true

0 comments on commit 9040c8e

Please sign in to comment.