Merge pull request #130 from fjebaker/fergus/doc-binding #228
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: Test | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'src/**.jl' | |
- 'test/**.jl' | |
push: | |
branches: | |
- main | |
paths: | |
- 'src/**.jl' | |
- 'test/**.jl' | |
concurrency: | |
# cancels when a PR gets updated | |
group: ${{ github.head_ref || github.run_id }}-${{ github.actor }} | |
cancel-in-progress: true | |
jobs: | |
smoke-test: | |
name: Julia ${{ matrix.version }} - ${{ matrix.os }} | |
timeout-minutes: 30 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
julia-version: ['1.10'] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/checkout@v3 | |
with: | |
repository: fjebaker/spectral-fitting-test-suite | |
path: data | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.julia-version }} | |
- run: | | |
ls -la | |
ls -la data | |
- uses: actions/cache@v1 | |
env: | |
cache-name: cache-artifacts | |
with: | |
path: ~/.julia/artifacts | |
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} | |
restore-keys: | | |
${{ runner.os }}-test-${{ env.cache-name }}- | |
${{ runner.os }}-test- | |
${{ runner.os }}- | |
- run: julia -e 'import Pkg; Pkg.Registry.add(Pkg.RegistrySpec(url="https://github.com/astro-group-bristol/AstroRegistry/"))' | |
- uses: julia-actions/julia-buildpkg@v1 | |
- run: cat Manifest.toml | |
- run: | | |
julia --color=yes --math-mode=ieee --check-bounds=yes -tauto --project=. -e ' | |
import Pkg | |
Pkg.test(; coverage=true, force_latest_compatible_version=true) | |
' | |
env: | |
SF_TEST_SUITE_DATA: "../data/sample-data" | |
- uses: julia-actions/julia-processcoverage@v1 | |
with: | |
directories: src | |
- uses: codecov/codecov-action@v2 | |
with: | |
files: lcov.info |