Skip to content

Commit

Permalink
Add GH action runner (test libidn2)
Browse files Browse the repository at this point in the history
  • Loading branch information
rockdaboot committed Feb 4, 2024
1 parent ba4c49a commit 286b280
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: libpsl

on:
push:
branches: [main]
pull_request:
branches: ["**"]

jobs:
test:
name: Test (libidn2)
runs-on: ubuntu-latest
strategy:
fail-fast: true
max-parallel: 2
steps:
- name: Check out
uses: actions/checkout@v4
- name: Run
run: |
./autogen.sh
CFLAGS="-O0 -Wall -Wextra" ./configure --enable-runtime=libidn2
make check

0 comments on commit 286b280

Please sign in to comment.