Skip to content

Commit

Permalink
Add project checker to CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
edi33416 committed Nov 14, 2022
1 parent 2fedc4f commit 423f60f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/project-checker-2022-2023
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test PCLP4 Project Checkers
run-name: ${{ github.actor }} is testing project checkers

on:
push:
paths:
- 'Project/**'

jobs:
Test-2022_2023-Project-Milestone-1:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3

- uses: dorny/paths-filter@v2
id: filter
with:
filters: |
m1-2022_2023:
- 'Project/m1/**'

- name: Run the checker
if: ${{ steps.filter.outputs.m1-2022_2023 == 'true' }}
run: |
cd Project/m1/db_conn
make start

0 comments on commit 423f60f

Please sign in to comment.