Merge branch 'main' of github.com:Anjishnubose/MeanFieldToolkit.jl #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
tags: ['*'] | |
pull_request: | |
concurrency: | |
# Skip intermediate builds: always. | |
# Cancel intermediate builds: only if it is a pull request build. | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
jobs: | |
test: | |
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- '1.8' | |
- '1.7' | |
python: [3.8] | |
os: | |
- ubuntu-latest | |
arch: | |
- x64 | |
env: | |
PYTHON: "" | |
steps: | |
- uses: actions/checkout@v2 | |
- 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 | |
pip install numpy | |
# Julia tasks | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- uses: julia-actions/cache@v1 | |
- uses: julia-actions/julia-buildpkg@v1 | |
env: | |
PYTHON : "${{ env.pythonLocation }}/bin/python" | |
- uses: julia-actions/julia-runtest@v1 |