Skip to content

Commit

Permalink
Merge pull request #17 from NREL-Sienna/gks/issue-7
Browse files Browse the repository at this point in the history
Fix #7
  • Loading branch information
jd-lara committed Nov 9, 2023
2 parents a96ba2b + 60c303a commit 43e7dbf
Show file tree
Hide file tree
Showing 23 changed files with 188 additions and 16,250 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,15 @@ jobs:
with:
version: ${{ matrix.julia-version }}

- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Install JuliaFormatter and format
run: |
julia -e 'using Pkg; Pkg.add(PackageSpec(name="JuliaFormatter", version = "0.14.1"))'
julia -e 'using JuliaFormatter; include(".github/workflows/formatter/formatter_code.jl")'
julia -e 'include("scripts/formatter/formatter_code.jl")'
- uses: reviewdog/action-suggester@v1
if: github.event_name == 'pull_request'
with:
tool_name: JuliaFormatter
fail_on_error: true
- name: Format check
run: |
julia -e '
Expand Down
26 changes: 0 additions & 26 deletions .github/workflows/formatter/formatter_code.jl

This file was deleted.

11 changes: 0 additions & 11 deletions .github/workflows/formatter_code.jl

This file was deleted.

125 changes: 123 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,125 @@
*Manifest.toml
#Files generated by invoking Julia with --code-coverage
*.jl.cov
*.jl.*.cov
*.log
_*.jl
# Files generated by invoking Julia with --track-allocation
*.jl.mem

## Autogenerated code during the documentation process/
generated*.md

# Test data
test/test_results
.DS_Store

# System-specific files and directories generated by the BinaryProvider and BinDeps packages
# They contain absolute paths specific to the host computer, and so should not be committed
deps/deps.jl
deps/build.log
deps/downloads/
deps/usr/
deps/src/

# Build artifacts for creating documentation generated by the Documenter package
docs/build/
docs/site/

#Jupyter Ignores
.ipynb_checkpoints/
.ipynb_checkpoints

#Mac temp ignores
.DS_Store

#Figures
*.pdf
*.ipynb

Manifest.toml
.vscode
*.h5

################################################################################
# Operating systems #
################################################################################

########################################
# Linux #
########################################

*~

# temporary files which can be created if a process still has a handle open of
# a deleted file
.fuse_hidden*

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*

# .nfs files are created when an open file is removed but is still being accessed
.nfs*

########################################
# macOS #
########################################

# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

########################################
# Windows #
########################################

# Windows thumbnail cache files
Thumbs.db
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk

## Acknowledgements
# Many thanks to `https://gitignore.io/`, written and maintained by Joe Blau, which contributed much material to this gitignore file.
9 changes: 0 additions & 9 deletions docs/build/PowerAnalytics/3.0_getting_started.jl

This file was deleted.

3 changes: 0 additions & 3 deletions docs/build/api/PowerAnalytics.html

This file was deleted.

Loading

0 comments on commit 43e7dbf

Please sign in to comment.