- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for setUp (0.03 sec)
-
maven.yml
branches: L13: - master L14: - "*.x" L15: workflow_dispatch: L16: L17:jobs: L18: build: L19: runs-on: macos-14 L20: timeout-minutes: 15 L21: steps: L22: - uses: actions/checkout@v4 L23: - name: Set up JDK 21 L24: uses: actions/setup-java@v4 L25: with: L26: java-version: '21' L27: distribution: 'temurin' L28: - uses: actions/cache@v4 L29: with: L30: path: ~/.m2/repository L31: key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} L32:...github.com/codelibs/fess/.github/workflows/mave...Sat Feb 10 11:19:11 UTC 2024 1.1K bytes -
maven.yml
L16:jobs: L17: build: L18: runs-on: ${{ matrix.os }} L19: L20: strategy: L21: matrix: L22: os: [ubuntu-latest, windows-latest] L23: L24: steps: L25: - uses: actions/checkout@v2 L26: - name: Set up JDK 11 L27: uses: actions/setup-java@v2 L28: with: L29: java-version: '11' L30: distribution: 'adopt' L31: - name: Build with Maven L32: run: mvn -B package --file pom.xml...github.com/codelibs/curl4j/.github/workflows/ma...Sat Feb 19 00:40:24 UTC 2022 675 bytes