Skip to content

Commit cc36c62

Browse files
committed
automated PR tests
1 parent cc32620 commit cc36c62

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

.github/workflows/pr_docker_test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: test docker build on pr
2+
3+
on:
4+
pull_request:
5+
branches: [ "main"]
6+
7+
jobs:
8+
testbuild:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: checkout code
12+
uses: actions/checkout@v4
13+
- name: Set up QEMU
14+
uses: docker/setup-qemu-action@v3
15+
with:
16+
platforms: all
17+
- name: Docker Setup Buildx
18+
id: buildx
19+
uses: docker/setup-buildx-action@v3
20+
- name: Build
21+
uses: docker/build-push-action@v5
22+
with:
23+
context: .
24+
platforms: linux/arm/v7,linux/arm64
25+
push: false

vibinator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
ALEXA_ACCESSCODE = os.getenv('ALEXA_ACCESSCODE')
4444

4545
# Other Globals
46-
VER = '2.5.1'
46+
VER = '2.5.2'
4747
USER_AGENT = f"vibinator.py/{VER}"
4848

4949
# Setup logger

0 commit comments

Comments
 (0)