Skip to content

Commit

Permalink
DevOps: Add github workflow file for tests-lab-4
Browse files Browse the repository at this point in the history
  • Loading branch information
agoscinski committed Jul 3, 2024
1 parent da46e85 commit e6e9fd0
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/tests-lab-4.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Tests - lab 4

on:
push:
branches: [main]
pull_request:
# Check all PR

jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-22.04
python-version: "3.11"

steps:
- uses: actions/checkout@v3
- name: Install Firefox
uses: browser-actions/setup-firefox@latest

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install tox

- name: run Python tests
run: tox -e tests-lab-4

- name: run Python tests for coverage
run: tox -e coverage
- uses: codecov/codecov-action@v3
with:
files: coverage.xml
verbose: true

0 comments on commit e6e9fd0

Please sign in to comment.