-
Notifications
You must be signed in to change notification settings - Fork 10
29 lines (24 loc) · 704 Bytes
/
Copy pathci.yml
File metadata and controls
29 lines (24 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Thanks to https://github.com/coil-kt/coil/blob/master/.github/workflows/ci.yml
name: firebase app distribution
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize]
jobs:
ci:
name: Build + Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
- uses: actions/cache@v6
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Build
run: ./gradlew assembleDebug