Skip to content
Snippets Groups Projects
Commit dd2fcf21 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

fix CR moving

parent 76cb91fa
No related branches found
No related tags found
No related merge requests found
...@@ -21,16 +21,22 @@ jobs: ...@@ -21,16 +21,22 @@ jobs:
pip install -U -e .[test,dev] pip install -U -e .[test,dev]
- name: Test everything - name: Test everything
run: pytest -n 8 -vv --cov=satella run: pytest -n 8 -vv --cov=satella
- name: List
run: ls .*
upload-coverage: upload-coverage:
runs-on: "ubuntu-20.04" runs-on: "ubuntu-latest"
needs: ["tests"] needs: ["tests"]
steps: steps:
- uses: actions/checkout@main - uses: actions/checkout@main
- uses: actions/setup-python@main - uses: actions/setup-python@main
with: with:
python-version: '3.8' python-version: '3.8'
- run: coverage xml - run: |
- uses: caffco/code-climate-github-action@v1.0.0 pip install coverage
coverage xml
- uses: caffco/code-climate-github-action@main
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
build-project: build-project:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
...@@ -79,4 +85,6 @@ jobs: ...@@ -79,4 +85,6 @@ jobs:
run: | run: |
echo $PYPIRC_PASSWORD_DATA > ~/.pypirc echo $PYPIRC_PASSWORD_DATA > ~/.pypirc
twine upload dist/* twine upload dist/*
env:
PYPIRC_PASSWORD_DATA: ${{ secrets.PYPIRC_PASSWORD_DATA }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment