Skip to content

Bump docker/setup-buildx-action from 3.4.0 to 3.7.0 #1122

Bump docker/setup-buildx-action from 3.4.0 to 3.7.0

Bump docker/setup-buildx-action from 3.4.0 to 3.7.0 #1122

Workflow file for this run

name: Unit Tests
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12' # Version range or exact version of a Python version to use, using SemVer's version range syntax
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
- name: Install pytest
run: pip install pytest
- name: Install Requirements
run: pip install -r requirements.txt
- name: Run Unit Tests
run: pytest