Create dependabot.yml #9
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: Windows Makefile | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Run makefile | |
run: | | |
./makefile.cmd | |
- name: Short test | |
run: | | |
java -jar JavaCrypt.jar | |
java -jar JavaCrypt.jar -genkeys | |
- name: Clean Up | |
run: | | |
del *.key | |
git clean -fX |