mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +00:00
25 lines
622 B
YAML
25 lines
622 B
YAML
name: Bake CI™
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Install Python 3.7
|
|
run: |
|
|
sudo apt install python3-distutils python3-dev python3-distutils -y -qq
|
|
- name: Install Pipenv!
|
|
run: |
|
|
curl -s --retry 3 https://bootstrap.pypa.io/get-pip.py > /tmp/get-pip.py
|
|
sudo python3 /tmp/get-pip.py pipenv > /dev/null
|
|
rm -fr /tmp/get-pip.py
|
|
- name: Install dependencies
|
|
run: |
|
|
pipenv install --dev
|
|
- name: Test with pytest
|
|
run: |
|
|
pipenv run pytest
|