url-parser.c

URL parsing library
git clone git://git.finwo.net/lib/url-parser.c
Log | Files | Refs | README | LICENSE

test.yml (338B)


      1 name: Test
      2 
      3 on:
      4   push:
      5     branches: [main]
      6   pull_request:
      7     branches: [main]
      8 
      9 jobs:
     10   test:
     11     runs-on: ubuntu-latest
     12 
     13     steps:
     14       - uses: actions/checkout@v4
     15 
     16       - name: Install GCC
     17         run: sudo apt-get update && sudo apt-get install -y gcc
     18 
     19       - name: Run tests
     20         run: |
     21           cd test
     22           make run