Skip to content

Move docs to quarto for v1 #392

Move docs to quarto for v1

Move docs to quarto for v1 #392

Workflow file for this run

name: Wflow Server CI
on:
pull_request:
push:
branches:
- master
- v1
tags: '*'
jobs:
test:
name: WflowServer Julia - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
arch:
- x64
steps:
- uses: actions/checkout@v4
- uses: julia-actions/cache@v2
with:
cache-compiled: "true"
cache-registries: "true"
- uses: prefix-dev/[email protected]
with:
pixi-version: "latest"
- name: Prepare pixi
run: pixi run install-julia
- name: Test WflowServer
run: |
pixi run test-wflow-server
- uses: julia-actions/julia-processcoverage@v1
with:
directories: server/src
- uses: codecov/codecov-action@v4
with:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}