1
0
Mirror von https://github.com/Chaoscaot/schemsearch synchronisiert 2024-09-07 08:42:52 +02:00
schemsearch/.github/workflows/master-build.yml
2023-04-05 13:05:15 +02:00

57 Zeilen
1.3 KiB
YAML

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