Skip to content

Commit de4d97f

Browse files
committed
automated PR tests
1 parent 14e09a8 commit de4d97f

2 files changed

Lines changed: 26 additions & 1 deletion

File tree

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/amd64,linux/arm64
25+
push: false

washerbot.py

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

4343
# Other Globals
44-
VER = "1.0.1"
44+
VER = "1.0.2"
4545
USER_AGENT = f"washerbot.py/{VER}"
4646

4747
# Setup logger

0 commit comments

Comments
 (0)