From d07d7e975be6087d95e6af1fa503b451f4dc2345 Mon Sep 17 00:00:00 2001 From: Rowan Hemsi_ONS <70013144+rowanhemsi@users.noreply.github.com> Date: Thu, 2 May 2024 15:55:24 +0100 Subject: [PATCH] Add workflow to build and test before merging to main (#7) --- .github/workflows/main.yaml | 45 +++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/main.yaml diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml new file mode 100644 index 00000000..fdf19035 --- /dev/null +++ b/.github/workflows/main.yaml @@ -0,0 +1,45 @@ +name: Build and run tests + +# Controls when the action will run. +on: + # Triggers the workflow on push events for the main branch + push: + branches: [ main ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v3 + + - name: Set up Python 3.6.8 + uses: actions/setup-python@v3 + with: + python-version: 3.6.8 + + - name: Check package build + run: | + python -m pip install --upgrade pip + + test: + runs-on: ubuntu-20.04 + steps: + # Checks-out your repository under $GITHUB_WORKSPACE + - uses: actions/checkout@v3 + + - uses: actions/setup-python@v3 + with: + python-version: 3.6.8 + cache: 'pip' + + - name: Install Python dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + + - name: Run pytest + run: | + pytest -v \ No newline at end of file