Skip to content

CompatHelper: add new compat entry for PyCall at version 1, (keep existing compat) #613

CompatHelper: add new compat entry for PyCall at version 1, (keep existing compat)

CompatHelper: add new compat entry for PyCall at version 1, (keep existing compat) #613

Workflow file for this run

name: CI
on:
push:
branches:
- main
- dev
tags:
- 'v*'
pull_request:
jobs:
EcoSISTEM-tests:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
julia-version:
- '1.8'
- '1.9'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
R-version:
- 'release'
arch:
- x64
experimental:
- false
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up julia
uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.arch }}
- name: Build package
uses: julia-actions/julia-buildpkg@v1
- name: Running
uses: julia-actions/julia-runtest@v1
- name: Process coverage
uses: julia-actions/julia-processcoverage@v1
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./lcov.info
- name: Codecov
uses: codecov/codecov-action@v1