Skip to content

Commit

Permalink
add automated pr testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jcostom committed Feb 13, 2024
1 parent 4d4ed3d commit da7ee12
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/pr_docker_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: test docker build on pr

on:
pull_request:
branches: [ "main"]

jobs:
testbuild:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Docker Setup Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Build
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: false
2 changes: 1 addition & 1 deletion rollerblades.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
DEBUG = int(os.getenv('DEBUG', 0))

# --- Globals ---
VER = '1.1.1'
VER = '1.1.2'
USER_AGENT = f"rollerblades.py/{VER}"
KEY = 'CinemaTrailersPrerollID'

Expand Down

0 comments on commit da7ee12

Please sign in to comment.