improve HDF5Viewer, add lock for await_finalize #347
Workflow file for this run
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 | |
on: | |
push: | |
branches: "main" | |
tags: ["*"] | |
pull_request: | |
release: | |
jobs: | |
test: | |
name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.julia-arch }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
julia-version: | |
- "1.6" | |
- "1" | |
#- "nightly" | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
julia-arch: | |
- x64 | |
- x86 | |
include: | |
- os: ubuntu-latest | |
prefix: xvfb-run | |
# 32-bit Julia binaries are not available on macOS | |
exclude: | |
- os: macOS-latest | |
julia-arch: x86 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.julia-version }} | |
arch: ${{ matrix.julia-arch }} | |
- uses: julia-actions/cache@v1 | |
- uses: julia-actions/julia-buildpkg@latest | |
- name: GObjectIntrospection tests | |
shell: julia --project=@. --color=yes {0} | |
run: | | |
using Pkg | |
Pkg.develop(path="GI"); Pkg.test("GI"; coverage=true) | |
- uses: julia-actions/julia-runtest@latest | |
with: | |
prefix: ${{ matrix.prefix }} | |
- uses: julia-actions/julia-processcoverage@latest | |
if: startsWith(matrix.os, 'ubuntu') | |
with: | |
directories: GI/src,src | |
- uses: codecov/codecov-action@v3 | |
if: startsWith(matrix.os, 'ubuntu') | |
with: | |
file: lcov.info | |
Documentation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: 1 | |
- uses: julia-actions/cache@v1 | |
- uses: julia-actions/julia-docdeploy@v1 | |
with: | |
prefix: xvfb-run | |
env: | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} |