-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (30 loc) · 751 Bytes
/
ci.yml
File metadata and controls
37 lines (30 loc) · 751 Bytes
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
name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
lint-shell:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Bash Syntax Check
run: |
bash -n ./scripts/fix-codex-thread-path.sh
bash -n ./tests/smoke.sh
smoke-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y jq sqlite3
- name: Make Scripts Executable
run: |
chmod +x ./scripts/fix-codex-thread-path.sh
chmod +x ./tests/smoke.sh
- name: Run Smoke Test
run: ./tests/smoke.sh