mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 14:50:19 +00:00
this isn't working
This commit is contained in:
@@ -1,15 +0,0 @@
|
||||
name: Bake PyPI Distribution™
|
||||
|
||||
on: [tag]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Upload to PyPI
|
||||
uses: pypa/gh-action-pypi-publish@master
|
||||
with:
|
||||
user: __token__
|
||||
password: ${{ secrets.pypi_password }}
|
||||
@@ -1,25 +0,0 @@
|
||||
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: |
|
||||
sudo pipenv install --dev --system
|
||||
- name: Test with pytest
|
||||
run: |
|
||||
sudo killall shell
|
||||
sudo pytest
|
||||
Reference in New Issue
Block a user