[pre-commit.ci] pre-commit autoupdate #1047
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python Testing | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
# menjalankan testing dengan 3 os yaitu | |
# linux (ubuntu), windows, dan macOS | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
# untuk menggunakan arsitektur pada arm dan xx86 | |
arm: [x86, arm64] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Setting python versi 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Cache pip dependecies | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt')}} | |
- name: Install Dependencies | |
run: | | |
echo "Installing required dependencies" | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt -r dev-requirements.txt | |
- name: Python Linting | |
run: | | |
echo "Running flake8 tests" | |
flake8 . |