Skip to content

add workflow to regularly check for a new vroom release #31

add workflow to regularly check for a new vroom release

add workflow to regularly check for a new vroom release #31

Workflow file for this run

# only builds and tests on PR pushes
name: PR push
on:
push:
branches-ignore:
- '*'
pull_request:
branches:
- 'master'
paths-ignore:
- '.gitignore'
- 'docker-compose.yml'
- 'LICENSE'
- '**.md'
jobs:
build_test_publish:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Build Image on amd64
run: docker build --tag ghcr.io/vroom-project/vroom-docker:latest .
- name: Test tagged amd64 image
run : sudo /bin/bash -c "./tests/test.sh ghcr.io/vroom-project/vroom-docker:latest"