Skip to content

Commit

Permalink
WIP: Test improve caching
Browse files Browse the repository at this point in the history
  • Loading branch information
SukiCZ committed Dec 4, 2024
1 parent c645a09 commit 1b7ab3c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/make-messages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Python
- name: Install APT Dependencies
run: sudo apt-get install gettext

- name: Install Python Dependencies
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: "pip"
cache-dependency-path: 'requirements*.txt'

- name: Install Dependencies
run: |
python -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip
pip install -r requirements.txt
sudo apt-get install gettext
- name: Make messages cs
run: |
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,10 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: 'requirements*.txt'

- name: Install Dependencies
run: |
python -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
Expand Down

0 comments on commit 1b7ab3c

Please sign in to comment.