[Phase4] Fix test_4_r12.test
#26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 & SPIM | |
run: | | |
pip install pyinstaller | |
sudo apt install spim | |
- name: 3. Test splc | |
working-directory: phase4 | |
run: make test |