Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit cf98f45

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents f552825 + bd9154d commit cf98f45

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

.github/workflows/autotest.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,12 @@ jobs:
2222
steps:
2323
- name: Cloning repository
2424
uses: actions/checkout@v4
25+
- name: Prepare environment
26+
run: |
27+
chmod -R +x .
28+
./env.sh
2529
- name: Test evaluation
2630
run: |
27-
chmod -R +x .
28-
source env.sh && ./tests/setup_and_run.sh
31+
./tests/setup_and_run.sh
32+
env:
33+
PROTOCOL: ${{ env.PROTOCOL }}

env.sh

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,11 @@
77
# 3. SMTP
88
# 4. IRC
99

10-
PROTOCOL=3
10+
<<<<<<< HEAD
11+
PROTOCOL=3
12+
=======
13+
PROTOCOL=0
14+
15+
# Don't modify the next line
16+
echo "PROTOCOL=${PROTOCOL}}" >> "$GITHUB_ENV"
17+
>>>>>>> origin/main

0 commit comments

Comments
 (0)