name: Previous zig version Build
on:
  push:
    branches:
      - 'zig-0.13'
jobs:
  build-amd64:
    runs-on: ubuntu-latest
    if: ${{ github.env.GITEA_ACTIONS != 'true' }}
    steps:
      - name: Check out repository code
        uses: actions/checkout@v4
      - name: Setup Zig
        uses: mlugg/setup-zig@v1.2.1
        with:
          version: 0.13.0
      - name: Run tests
        run: zig build test -Dbroken-windows --verbose # Github runners try to run the windows tests despite disabling foreign checks
      - name: Build example
        run: ( cd example && zig build ) # Make sure example builds