Skip to content

Commit

Permalink
[Phase4] Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
liqwang committed Dec 30, 2023
1 parent 39751a3 commit e27c2af
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/phase1.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: test splc
name: phase1
on:
workflow_dispatch:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phase2.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: test splc
name: phase2
on:
workflow_dispatch:
push:
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/phase4.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: phase4
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'phase4/**'
jobs:
test-splc:
name: test splc
runs-on: ubuntu-22.04
env:
TZ: Asia/Shanghai
steps:
- name: 1. Git checkout...
uses: actions/checkout@v3

- name: 2. Install Pyinstaller
run: pip install pyinstaller

- name: 3. Compile splc
working-directory: phase4
run: make splc

0 comments on commit e27c2af

Please sign in to comment.