first commit to project #1
Workflow file for this run
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 : Project Executor | ||
on: | ||
push: | ||
branches: | ||
- project | ||
paths: | ||
- project/** | ||
jobs: | ||
project-executor: | ||
run-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
path: project | ||
# Install python | ||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.11 | ||
# Install Libraries | ||
- name: Setting Up Environment Requirements | ||
id: requirements-set-up | ||
run: | | ||
pip3 install -r ./project/requirements.txt | ||
# - name: Create badges ex5 | ||
# uses: RubbaBoy/BYOB@v1.3.0 | ||
# with: | ||
# NAME: score_ex5 | ||
# LABEL: "Ex5" | ||
# STATUS: ${{ steps.ex_feedback.outputs.score_ex5 }} | ||
# COLOR: 84714F | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |