diff --git a/.github/workflows/pr_docker_test.yml b/.github/workflows/pr_docker_test.yml new file mode 100644 index 0000000..df7254c --- /dev/null +++ b/.github/workflows/pr_docker_test.yml @@ -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 diff --git a/vibinator.py b/vibinator.py index c5a20d9..12b6828 100755 --- a/vibinator.py +++ b/vibinator.py @@ -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