8000 Merge pull request #164 from fwfurtado/hotfix/add-missing-head-handler-to-endpoints · zigzap/zap@ec7cac6 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Works with Zig master #674

Works with Zig master

Works with Zig master #674

Workflow file for this run

name: Works with Zig master
on:
push:
branches:
- zig-master
pull_request:
branches:
- zig-master
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
ci:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
with:
ref: zig-master
- uses: goto-bus-stop/setup-zig@v2
with:
version: master
- name: Check zig version
run: zig version
- name: Build all examples
run: zig build all
# Run tests separately so we can see more clearly which one fails
- name: Run mustache tests
run: zig build test-mustache
- name: Run httpparams tests
run: zig build test-httpparams
- name: Run sendfile tests
run: zig build test-sendfile
- name: Run authentication tests
run: zig build test-authentication
- name: Report end of tests
run: echo "tests finished"
0