Skip to content

fix workflow

fix workflow #4

name: Python application
on:
push:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.10
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Run tests (if any)
run: |
echo "Running tests..."
# Add commands to run your tests here.