revert using :third_order for calc_z #874
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 | |
# From: https://github.com/JuliaDocs/Documenter.jl/blob/master/.github/workflows/CI.yml | |
# + https://discourse.julialang.org/t/easy-workflow-file-for-setting-up-github-actions-ci-for-your-julia-package/49765 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
test: | |
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- "1.x" | |
os: | |
- ubuntu-latest | |
#- macos-latest # avoid buring github actions hours | |
#- windows-latest # avoid buring github actions hours | |
arch: | |
- x64 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
show-versioninfo: true | |
- run: | | |
julia -e ' | |
using Pkg | |
Pkg.activate(".") | |
dependencies = PackageSpec[] | |
for package in ("IMASDD", "CoordinateConventions", "MillerExtendedHarmonic", "FXP") | |
push!(dependencies, PackageSpec(url="https://project-torrey-pines:${{secrets.PTP_READ_TOKEN}}@github.com/ProjectTorreyPines/$package.jl.git")) | |
end | |
Pkg.add(dependencies) | |
' | |
- uses: julia-actions/julia-buildpkg@v1 | |
- uses: julia-actions/julia-runtest@v1 |