Skip to content

fix(regex): honor unicode atoms in backreferences #180

fix(regex): honor unicode atoms in backreferences

fix(regex): honor unicode atoms in backreferences #180

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: mlugg/setup-zig@v2
with:
version: '0.17.0-dev.56+a8226cd53'
- name: Build
run: zig build
- name: Test
run: zig build test
build:
runs-on: ubuntu-latest
strategy:
matrix:
target:
- x86_64-linux
- aarch64-linux
- x86_64-macos
- aarch64-macos
- x86_64-windows
steps:
- uses: actions/checkout@v6
- uses: mlugg/setup-zig@v2
with:
version: '0.17.0-dev.56+a8226cd53'
- name: Build (${{ matrix.target }})
run: zig build -Dtarget=${{ matrix.target }} -Doptimize=ReleaseFast