From 666c8185c8b4cc4508f9a3ff8e4eb51d22a2d8fb Mon Sep 17 00:00:00 2001 From: Friedrich Lindenberg Date: Sun, 15 Mar 2020 13:15:31 +0100 Subject: [PATCH] Begin migrating to GitHub Actions --- .github/workflows/build.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..28f1b14 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,36 @@ +name: build + +on: [push] + +jobs: + python: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Show ref + run: | + echo "$GITHUB_REF" + - name: Set up Python + uses: actions/setup-python@v1 + with: + python-version: '3.x' + - name: Install dependencies + env: + DEBIAN_FRONTEND: noninteractive + run: | + sudo apt-get -qq update + pip install -e ".[dev]" + - name: Run SQLite tests + env: + DATABASE_URI: sqlite:///tmp/test.sqlite + run: | + make test + - name: Build a distribution + run: | + python setup.py sdist bdist_wheel + # - name: Publish a Python distribution to PyPI + # if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') + # uses: pypa/gh-action-pypi-publish@master + # with: + # user: __token__ + # password: ${{ secrets.pypi_password }} \ No newline at end of file