-
Notifications
You must be signed in to change notification settings - Fork 4
34 lines (31 loc) · 961 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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