Skip to content

Add Zenodo citation metadata and release verification #74

Add Zenodo citation metadata and release verification

Add Zenodo citation metadata and release verification #74

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
native-c-abi:
name: Native C ABI smoke test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Build shared library and execute C clients
env:
MQLIB_UPSTREAM_REF: 585496274af5abb0849d0d47e135496b4688680b
run: bash test/native_c_api_smoke.sh
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- version: '1.10'
os: ubuntu-latest
arch: x64
- version: '1'
os: ubuntu-latest
arch: x64
- version: '1'
os: windows-latest
arch: x64
steps:
- uses: actions/checkout@v7
- uses: julia-actions/setup-julia@v3
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v3
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
coverage: false