Skip to content

Commit

Permalink
automated PR tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jcostom committed Feb 13, 2024
1 parent cc32620 commit cc36c62
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/arm/v7,linux/arm64
push: false
2 changes: 1 addition & 1 deletion vibinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
ALEXA_ACCESSCODE = os.getenv('ALEXA_ACCESSCODE')

# Other Globals
VER = '2.5.1'
VER = '2.5.2'
USER_AGENT = f"vibinator.py/{VER}"

# Setup logger
Expand Down

0 comments on commit cc36c62

Please sign in to comment.