Skip to content

deps: bump ghastoolkit from 0.14.0 to 0.14.2 in the production-dependencies group across 1 directory #83

deps: bump ghastoolkit from 0.14.0 to 0.14.2 in the production-dependencies group across 1 directory

deps: bump ghastoolkit from 0.14.0 to 0.14.2 in the production-dependencies group across 1 directory #83

Workflow file for this run

name: Build and Test
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
test-e2e:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pipenv
pipenv install
- name: Run tests
run: |
pipenv run test-e2e