diff --git a/.github/workflows/test copy.yml b/.github/workflows/test copy.yml new file mode 100644 index 00000000..182dcb0e --- /dev/null +++ b/.github/workflows/test copy.yml @@ -0,0 +1,21 @@ +name: Docs + +on: + push: + branches: [main] + pull_request: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Set up Zig + uses: korandoru/setup-zig@v1 + with: + zig-version: master + + - name: Generate docs + run: zig test -femit-docs=./docs src/lib.zig diff --git a/.gitignore b/.gitignore index 162858c5..65c94208 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ # OS-specific files **.DS_Store +target/ + # Zig-specific build artifacts zig-cache/ zig-out/