fix: don't include namespace errors for non-namespace-aware readers (… #21
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] | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Zig | |
uses: goto-bus-stop/setup-zig@v2 | |
- name: Test | |
run: zig build test | |
- name: Build examples | |
run: zig build install-examples | |
build-docs: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Zig | |
uses: goto-bus-stop/setup-zig@v2 | |
- name: Build docs | |
if: github.ref == 'refs/heads/main' | |
run: zig build docs | |
- name: Upload docs artifact | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: zig-out/docs | |
publish-docs: | |
needs: [build-docs] | |
runs-on: ubuntu-latest | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 |