Gnm Bipartite generator: random bipartite graph with n1,n2 vertices a… #2
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: Build | |
permissions: | |
contents: read | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get repo | |
uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Build with Maven | |
run: mvn --batch-mode --update-snapshots package '-Dmaven.test.skip' | |
- name: Run JUnit Tests | |
run: mvn --batch-mode test '-DfailIfNoTests=false' | |
- name: statically analyze code using SpotBugs | |
run: mvn --batch-mode compile spotbugs:check -pl -jgalgo-bench |