Skip to content

Commit

Permalink
Set TZ in .github/workflows/run_tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes11833 committed Nov 29, 2024
1 parent 39bce60 commit e060dad
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: Run Unit Test via Pytest

on: [push]
env:
rclone_config: ${{ secrets.RCLONE_CONFIG }}
python_version: "3.10"


jobs:
build:
runs-on: ubuntu-latest

runs-on: ubuntu-latest
env:
rclone_config: ${{ secrets.RCLONE_CONFIG }}
python_version: "3.10"
TZ: "Europe/Berlin"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ env.python_version }}
Expand All @@ -22,6 +22,7 @@ jobs:
mkdir -p ~/.config/rclone
echo "$rclone_config" > ~/.config/rclone/rclone.conf
rclone listremotes
timedatectl
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit e060dad

Please sign in to comment.