mirror of
https://github.com/zigzap/zap.git
synced 2025-10-20 15:14:08 +00:00
69 lines
1.8 KiB
YAML
69 lines
1.8 KiB
YAML
name: Works with Zig master
|
|
on:
|
|
push:
|
|
branches:
|
|
- zig-0.13.0
|
|
pull_request:
|
|
branches:
|
|
- zig-0.13.0
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
ci:
|
|
strategy:
|
|
matrix:
|
|
platform: [ubuntu-latest, macos-latest]
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- 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"
|
|
|
|
update-readme:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
id-token: write
|
|
contents: write
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: goto-bus-stop/setup-zig@v2
|
|
with:
|
|
version: master
|
|
|
|
- name: Build announceybot
|
|
run: zig build announceybot
|
|
|
|
- name: Run script to update README
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
TAG_NAME: ${{ steps.tag.outputs.version }}
|
|
run: |
|
|
zig-out/bin/announceybot update-readme "zig-0.13.0"
|
|
|
|
- name: Commit and push if it has changed
|
|
run: |
|
|
git diff
|
|
git checkout zig-0.13.0
|
|
git config --local user.email "action@github.com"
|
|
git config --local user.name "GitHub Action"
|
|
git commit -am "Update README"
|
|
git push origin zig-0.13.0
|