Skip to content

Bump packaging from 24.2 to 25.0 (#7) #24

Bump packaging from 24.2 to 25.0 (#7)

Bump packaging from 24.2 to 25.0 (#7) #24

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.13'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install pytest
run: |
pip install pytest
- name: Run tests
run: |
python -m pytest
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile --tag pythonhacking:$(date +%s)