Skip to content

Commit

Permalink
Merge pull request #75 from Shuyib/Shuyib-patch-3
Browse files Browse the repository at this point in the history
Update devops.yml
  • Loading branch information
Shuyib authored Nov 18, 2024
2 parents 3863972 + 927670d commit f2ff75d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/devops.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: CI/CD
on: [push]
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -12,6 +12,13 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
make install
Expand Down

0 comments on commit f2ff75d

Please sign in to comment.