name: Master Build on: push: branches: [ "master" ] pull_request: branches: [ "master" ] env: CARGO_TERM_COLOR: always jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Cache Cargo modules id: cache-cargo uses: actions/cache@v3 continue-on-error: false with: path: | ~/.cargo/registry ~/.cargo/git key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} restore-keys: | ${{ runner.os }}-cargo- - name: Build run: make debug - name: Run tests run: cargo test --verbose -p schemsearch-lib build-release: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Cache Cargo modules id: cache-cargo uses: actions/cache@v3 continue-on-error: false with: path: | ~/.cargo/registry ~/.cargo/git key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} restore-keys: | ${{ runner.os }}-cargo- - name: Build run: make - name: Upload a Build Artifact uses: actions/upload-artifact@v3.1.2 with: name: schemsearch-cli path: target/release/schemsearch-cli