Skip to content

Update docs for phonspec specstyle arg #121

Update docs for phonspec specstyle arg

Update docs for phonspec specstyle arg #121

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Test and coverage
# Controls when the action will run.
on:
push:
branches: [main]
tags: [v*]
pull_request:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ['1.6', '1']
julia-arch: [x64]
os: [ubuntu-latest]
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
- run: sudo apt-get update; sudo apt-get install python3-scipy
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v3
with:
file: lcov.info