Merge pull request #5 from LRepalust/s3_implementation #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check test and code linting | |
on: [push] | |
jobs: | |
test-and-lint: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- python-version: '3.8' | |
tox: min | |
- python-version: '3.9' | |
- python-version: '3.10' | |
- python-version: '3.11' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: pre-commit/[email protected] | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tox codecov | |
- name: tox | |
run: | | |
tox -e ${{ matrix.toxenv || 'py' }} | |
- name: Upload coverage.xml to codecov | |
if: ${{ matrix.python-version == 3.11 }} | |
uses: codecov/codecov-action@v1 | |
publish: | |
needs: test-and-lint | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Install package and dependencies | |
run: >- | |
python -m pip install -e . | |
- name: Publish distribution 📦 to Private PyPI | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_DEFAULT_REGION: us-west-2 | |
AWS_DEFAULT_OUTPUT: json | |
run: | | |
pip install awscli | |
pip install wheel | |
python setup.py sdist bdist_wheel | |
aws s3 sync dist/ s3://pkgrepo.scrapinghub.com/python/packages/ |