Skip to content

Commit 83eb596

Browse files
author
Aleksandar Vracarevic
committed
Add CI config
1 parent f7903b5 commit 83eb596

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

.github/workflows/gate.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: gate
2+
on: [push, pull_request]
3+
4+
jobs:
5+
gate:
6+
name: Gate
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@master
10+
- run: bash <( wget -qO- https://raw.githubusercontent.com/MATF-Software-Verification/VS-project-ci/main/gate )
11+

.github/workflows/tickets.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: tickets
2+
on: [push, issues]
3+
4+
jobs:
5+
tickets:
6+
name: Tickets
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Tickets
10+
id: tickets
11+
uses: lee-dohm/select-matching-issues@v1
12+
with:
13+
format: raw
14+
query: 'is:open'
15+
token: ${{ github.token }}
16+
- name: Report issues
17+
run: |
18+
echo "=== Open issues ==="
19+
grep 'http' ${{ steps.tickets.outputs.path }} && exit 1 || exit 0
20+

0 commit comments

Comments
 (0)