-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (33 loc) · 939 Bytes
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install required packages
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
- name: Build PodemQuest
run: |
make
- name: Run Tests
run: |
echo "Running test cases..."
for file in test/*.bench; do
echo "Running podemquest with $file"
podemquest -i "$file" -o "output_${file##*/}.txt"
echo "Contents of output_${file##*/}.txt:"
cat "output_${file##*/}.txt" # Output the contents of the generated file
echo "-----------------------------"
done