Add docs from openapi generator to docs + render all api docs + add u… #13
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: Julia test on PRs | |
on: | |
pull_request: | |
# branches: | |
# - main | |
paths: | |
- "RemoteBMI.jl/src/**" | |
- "RemoteBMI.jl/test/**" | |
- "RemoteBMI.jl/*.toml" | |
- .github/workflows/julia-test-on-prs.yml | |
types: [opened, synchronize, reopened] | |
concurrency: | |
# Skip intermediate builds: always. | |
# Cancel intermediate builds: only if it is a pull request build. | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
jobs: | |
test: | |
uses: ./.github/workflows/JuliaReusableTest.yml | |
with: | |
os: ubuntu-latest | |
version: "1" | |
arch: x64 | |
allow_failure: false | |
run_codecov: true |