Added support for dumping class loader & class trees. #34
This file contains hidden or 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: Java CI | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '11' | |
| distribution: 'adopt' | |
| - name: Build with Maven | |
| run: mvn --batch-mode --update-snapshots package | |
| - name: Verify with Maven | |
| run: mvn --batch-mode --update-snapshots verify | |
| - name: Gather artifacts | |
| run: mkdir staging && cp target/JavaForensicsToolkit*.jar staging | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Package | |
| path: staging |