Skip to content

Commit

Permalink
Merge pull request #5 from pmitros/omar/github-actions-1
Browse files Browse the repository at this point in the history
Initial support for GitHub actions
  • Loading branch information
OmarIthawi authored Jan 4, 2021
2 parents 171651d + c984430 commit 4989680
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Python application

on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.5
uses: actions/setup-python@v2
with:
python-version: 3.5
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest

0 comments on commit 4989680

Please sign in to comment.