Skip to content

Switch to new version of docker actions #36

Switch to new version of docker actions

Switch to new version of docker actions #36

Workflow file for this run

name: Pifpaf
on:
pull_request:
env:
INFLUXDB_VERSION: "0.13.0"
SCALA_VERSION: "2.12"
KAFKA_VERSION: "2.6.0"
ETCD_VERSION: "3.4.13"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
env:
- py310
- pep8
- build
steps:
- uses: actions/checkout@v4
- run: sudo chown -R 1000:1000 $GITHUB_WORKSPACE
- uses: docker/build-push-action@v5
with:
context: .
push: false
build-args: |
INFLUXDB_VERSION=${{ env.INFLUXDB_VERSION }}
SCALA_VERSION=${{ env.SCALA_VERSION }}
KAFKA_VERSION=${{ env.KAFKA_VERSION }}
ETCD_VERSION=${{ env.ETCD_VERSION }}
tags: ghcr.io/pifpaf/ci:latest
- name: Run tox
run: docker run --rm -v ${{ github.workspace }}:/home/pifpaf/pifpaf ghcr.io/pifpaf/ci:latest tox -e ${{ matrix.env }}