Skip to content

Merge branch 'main' of https://github.com/awjans/github-actions-pytho… #3

Merge branch 'main' of https://github.com/awjans/github-actions-pytho…

Merge branch 'main' of https://github.com/awjans/github-actions-pytho… #3

Workflow file for this run

name: Python application
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Run tests
run: |
python -m unittest discover -s tests