Skip to content

Commit

Permalink
ci/test: init
Browse files Browse the repository at this point in the history
  • Loading branch information
FliegendeWurst committed Jan 16, 2025
1 parent 50ac029 commit 1af32f5
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test

on:
push:
branches: [ "master", "ci-testing" ]
workflow_dispatch:

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up ImageMagick
uses: mfinelli/setup-imagemagick@v6
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
cache: gradle
- name: Run tests on emulator
run: ./gradlew :pixel9api35DebugAndroidTest
- name: Compare screenshots to reference
run: ./compare-test-images.sh

0 comments on commit 1af32f5

Please sign in to comment.