From bbf5befcade6adc898dd726cc97fffea0bbab205 Mon Sep 17 00:00:00 2001 From: Michael Wiencek Date: Tue, 20 Feb 2024 23:42:19 -0600 Subject: [PATCH] Add GitHub Actions workflow (#1) --- .github/workflows/tests.yml | 52 +++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..6c7bd1e --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,52 @@ +name: artwork-indexer tests + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +permissions: + contents: read + +jobs: + test: + runs-on: ubuntu-22.04 + + services: + db: + image: metabrainz/musicbrainz-test-database:production + env: + POSTGRES_HOST_AUTH_METHOD: trust + ports: + - 5432:5432 + options: >- + --health-cmd pg_isready + --health-interval 10s + --health-timeout 5s + --health-retries 5 + + steps: + - uses: actions/checkout@v4 + - name: Set up Python 3.11 + uses: actions/setup-python@v5 + with: + python-version: "3.11" + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m venv .venv + . .venv/bin/activate + pip install -r requirements.txt + - name: Run flake8 + run: | + . .venv/bin/activate + flake8 *.py tests/*.py --count --show-source --statistics + - name: Run tests + run: | + . .venv/bin/activate + cp config.tests.example.ini config.tests.ini + export PGHOST=localhost + export PGPORT=5432 + export DROPDB_COMMAND='sudo -E -H -u postgres dropdb' + ./run_tests.sh