Skip to content

Migrating To GRDBQuery 0.9 (#152) #497

Migrating To GRDBQuery 0.9 (#152)

Migrating To GRDBQuery 0.9 (#152) #497

Workflow file for this run

name: Unit Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
jobs:
unit_test:
name: Build and Test iPhone simulator
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.3
- name: Install dependencies
run: |
rustc --version
make install-typeshare && make install-toolchains && make install-swifttools
- name: Build Core
run: make generate-stone
- name: Unit Tests
run: make test