Skip to content

Commit

Permalink
Add Github workflow for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Abogical committed Apr 5, 2024
1 parent 604eb99 commit 69b45d9
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 10 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This workflow will install Python dependencies, run tests with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Python application

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Test with unittest
run: |
python -m unittest
10 changes: 0 additions & 10 deletions bitbucket-pipelines.yml

This file was deleted.

0 comments on commit 69b45d9

Please # to comment.