diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..ef08d75 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,16 @@ +on: + [push] + +jobs: + pytest: + name: Pytest + runs-on: ubuntu-latest + container: + image: docker.pkg.github.com/aleksandr-kotlyar/python_and_gitlab/python-3.7.6-alpine-req:ver-14-mimesis-4.1.2 + credentials: + username: ${{ github.actor }} + password: ${{ secrets.damngoodsecret }} + steps: + - uses: actions/checkout@v2 + - run: pytest src/test/test_api.py + continue-on-error: true