Skip to content

FileAutomation Stable Python3.9 #401

FileAutomation Stable Python3.9

FileAutomation Stable Python3.9 #401

name: FileAutomation Stable Python3.9
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: "0 3 * * *"
permissions:
contents: read
jobs:
build_stable_version:
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r requirements.txt
- name: Dir Module Test
run: python ./tests/unit_test/local/dir/dir_test.py
- name: File Module Test
run: python ./tests/unit_test/local/file/test_file.py
- name: Zip Module Test
run: python ./tests/unit_test/local/zip/zip_test.py