Skip to content

Commit

Permalink
Add package CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
straight-shoota committed Nov 13, 2023
1 parent 35dc332 commit f72a949
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/packages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Test package installation

on:
workflow_dispatch:
schedule: "5 4 * * 0" # every sunday at 04:05

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}

jobs:
pcre:
runs-on: ubuntu-latest
steps:
- name: Run test
run: make -C packages test

0 comments on commit f72a949

Please sign in to comment.