Skip to content

Bump docker/build-push-action from 4 to 5 #221

Bump docker/build-push-action from 4 to 5

Bump docker/build-push-action from 4 to 5 #221

Workflow file for this run

name: Tests
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
branches:
- master
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
steps:
- name: Checkout the repository
uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get install -y libimage-exiftool-perl
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run tests
run: pytest
docker-build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/[email protected]
- name: Build
uses: docker/build-push-action@v5
with:
context: .
push: false
tags: ivandokov/phockup:test