This repository was archived by the owner on Dec 16, 2025. It is now read-only.
Set context class loader in server thread #332
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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| if: ${{ !contains(github.event.head_commit.message, '[ci skip]') }} | |
| strategy: | |
| matrix: | |
| java: [ '11' ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK ${{ matrix.java }} | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| distribution: 'temurin' | |
| - name: Build with Maven | |
| run: mvn -B package --file pom.xml | |
| - name: Upload Artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Barrel CREA Edition | |
| path: target/Barrel-CREA-Edition-1.0.0-SNAPSHOT.jar |