Add more keys from the PM3 repo. #122
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: CI | |
on: | |
push: | |
paths: | |
- 'Mifare Classic Tool/**' | |
pull_request: | |
paths: | |
- 'Mifare Classic Tool/**' | |
env: | |
PROJECT_PATH: Mifare Classic Tool | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- uses: gradle/gradle-build-action@v2 | |
- name: Build | |
working-directory: ${{ env.PROJECT_PATH }} | |
run: ./gradlew assemble |