Skip to content

mastermind|green

mastermind|green #142

Workflow file for this run

name: Mastermind
on:
issues:
types: [opened]
jobs:
mastermind-main:
runs-on: ubuntu-latest
if: startsWith(github.event.issue.title, 'mastermind|')
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- uses: actions/cache@v2
name: Configure pip caching
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install Python dependencies
run: |
python -m pip install -r mastermind/requirements.txt
- name: Running Main File
env:
REPO: ${{github.repository}}
ISSUE_NUMBER: ${{github.event.issue.number}}
TOKEN: ${{github.token}}
run: python mastermind/runner.py