Merge branch 'master' into f-droid #2132
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Fdroid test | |
on: | |
push: | |
branches: [master, f-droid] | |
pull_request: | |
branches: [master, f-droid] | |
# Cancel a currently running workflow from the same PR, branch or tag when a new workflow is | |
# triggered (ref https://stackoverflow.com/a/72408109) | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
setup-works: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
# Setup Environment | |
- uses: actions/checkout@v4 | |
- name: Check fdroid setup | |
run: ./scripts/fdroid_init.sh | |
- name: Check froid build | |
run: ./scripts/fdroid_build.sh |