Skip to content

Commit

Permalink
Build CI workflow pipeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Jun 30, 2024
1 parent b1fe41d commit dd476bb
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install Python 3.12.3
uses: actions/setup-python@v4
with:
python-version: '3.12.3'

- name: APT Dependencies
run: sudo apt install python3-full libespeak-dev portaudio19-dev python3-pyaudio

- name: Python libraries
run: pip install SpeechRecognition pyaudio gtts pygame setuptools --break-system-packages

- name: Build
run: ./build.sh

- name: Output Check
run: ls dist

0 comments on commit dd476bb

Please sign in to comment.