Skip to content

Merge pull request #2 from Keyvanhardani/main #16

Merge pull request #2 from Keyvanhardani/main

Merge pull request #2 from Keyvanhardani/main #16

Workflow file for this run

name: Python application
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10'] # Verwenden Sie eine verfügbare Python-Version
name: Python ${{ matrix.python-version }} sample
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Execute Python script
run: python datev.py