feat: HLL - expose get_target_type for Sketch & Union #22
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 | |
on: | |
- push | |
- pull_request | |
jobs: | |
debian_x86: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Run cargo build | |
run: cargo build | |
- name: Run cargo test | |
run: cargo test | |
macos_x86: | |
runs-on: macos-12 | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install coreutils | |
run: brew install coreutils | |
- name: Run cargo build | |
run: cargo build | |
- name: Run cargo test | |
run: cargo test |