Skip to content

generator redesign #355

generator redesign

generator redesign #355

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
types:
- opened
- reopened
- synchronize
- ready_for_review
push:
branches:
- main
tags: '*'
jobs:
CI:
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
name: CI
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '~1.9.0-rc1'
#- '1' # automatically expands to the latest stable 1.x release of Julia.
os:
- ubuntu-latest
- macOS-latest
- windows-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v2
with:
file: ./lcov.info
flags: Pkg.test
name: codecov-umbrella
docs:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: '1'
- run: |
julia --project=docs -e 'import Pkg; Pkg.develop(path=".")'
julia --project=docs/ docs/make.jl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}