Skip to content
This repository has been archived by the owner on Aug 24, 2024. It is now read-only.

testpolymorph -> get_tariff_interface #210

testpolymorph -> get_tariff_interface

testpolymorph -> get_tariff_interface #210

Workflow file for this run

name: Documentation
# Run on master, tags, or any pull request
on:
# schedule:
# - cron: '0 2 * * *' # Daily at 2 AM UTC (8 PM CST)
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:
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: "1"
- run: |
git config --global user.name name
git config --global user.email email
git config --global github.user username
- working-directory: docs
run: julia --project=$(pwd) -e' push!(LOAD_PATH,"../src"); using Pkg;Pkg.instantiate(); include("make.jl")'
env:
JULIA_PKG_SERVER: ""
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}