Skip to content

Commit

Permalink
Created workflow for compile script
Browse files Browse the repository at this point in the history
  • Loading branch information
WaterNewt committed Mar 21, 2024
1 parent d353d4e commit 4d10a44
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/compile-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Compile Test

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.10'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest pyinstaller
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run compile script
run: |
bash compile_script.sh
continue-on-error: true

- name: Check if compilation successful
run: |
if [ $? -eq 0 ]; then
echo "Compilation successful."
else
echo "Compilation failed."
exit 1
fi

0 comments on commit 4d10a44

Please sign in to comment.