Skip to content

Commit

Permalink
-Added yaml file as starter workflow for JobFunnel
Browse files Browse the repository at this point in the history
-Working on PaulMcInnis#126
  • Loading branch information
thebigG committed Dec 1, 2020
1 parent 2417f6e commit 5668b68
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#tests for JobFunnel
name: ci

on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install -e .
env:
DEFAULT_BRANCH: master

0 comments on commit 5668b68

Please sign in to comment.