switch to pythoncall #135
Workflow file for this run
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-JOLI | |
on: | |
# Trigger the workflow on push to master or pull request | |
# to be merged in master | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: ['lts', '1.10', '1'] | |
os: | |
- ubuntu-latest | |
- macos-latest | |
arch: | |
- x64 | |
steps: | |
- name: Checkout JOLI | |
uses: actions/checkout@v2 | |
- name: Setup julia | |
uses: julia-actions/setup-julia@v2 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- name: Build JOLI | |
uses: julia-actions/julia-buildpkg@latest | |
- name: Run tests | |
uses: julia-actions/julia-runtest@latest | |
- name: Run examples | |
working-directory: examples | |
run: | | |
julia --project -e 'using JOLI; for f in readdir("."); include(f); end' |