Skip to content

Commit

Permalink
Merge pull request #47 from palumbom/multiple
Browse files Browse the repository at this point in the history
Merge multiple into main
  • Loading branch information
palumbom authored Aug 1, 2023
2 parents 1bc0b43 + 96abf44 commit 60d82ba
Show file tree
Hide file tree
Showing 57 changed files with 104,246 additions and 1,569 deletions.
57 changes: 48 additions & 9 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,33 @@ jobs:
matrix:
version:
- '1.8'
python: [3.7]
os:
- ubuntu-latest
- macOS-latest
arch:
- x64
exclude:
- os: macOS-latest
arch: x86
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1

# Python actions
- name: Set up 🐍 ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}

- name: Display Python version
run: python -c "import sys; print(sys.version)"

- name: Set ENV Variables for 🐍 📞
run: echo ENV["PYTHON"] = "${{ env.pythonLocation }}/bin/python" >> $GITHUB_ENV

- name: Install dependencies 🔧
run: |
python -m pip install --upgrade pip
pip install matplotlib
# Julia actions
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
Expand All @@ -40,7 +56,9 @@ jobs:
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-buildpkg@latest
env:
PYTHON : "${{ env.pythonLocation }}/bin/python"
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
Expand All @@ -51,10 +69,31 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1

# Python actions
- name: Set up 🐍 ${{ matrix.python }}
uses: actions/setup-python@v2
with:
version: '1.8'
- uses: julia-actions/julia-buildpkg@v1
python-version: ${{ matrix.python }}

- name: Display Python version
run: python -c "import sys; print(sys.version)"

- name: Set ENV Variables for 🐍 📞
run: echo ENV["PYTHON"] = "${{ env.pythonLocation }}/bin/python" >> $GITHUB_ENV

- name: Install dependencies 🔧
run: |
python -m pip install --upgrade pip
pip install matplotlib
# julia actions
- uses: julia-actions/setup-julia@latest
with:
version: '1'
- uses: julia-actions/julia-buildpkg@latest
env:
PYTHON : "${{ env.pythonLocation }}/bin/python"
- run: |
julia --project=docs -e '
using Pkg
Expand Down
26 changes: 17 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
*.DS_Store
*.jl.*.cov
*.jl.cov
*.jl.mem
# file endings
*.gz
*.log
*.pdf
*.jld2
*.jl.cov
*.jl.mem
*.jl.*.cov
*.DS_Store
*.sublime-workspace
*.gz
*.json
*.ipynb_checkpoints

.ipynb_checkpoints
/docs/build/
input_data/*
# specific files/directories
data/input/
docs/build/
Manifest.toml
data/spvis.dat
data/iag_blueshifts.dat
sftp-config*.json
data/input/*.h5
LocalPreferences.toml
File renamed without changes.
Loading

0 comments on commit 60d82ba

Please sign in to comment.