Skip to content

Remove chain_type from SwapQuote #246

Remove chain_type from SwapQuote

Remove chain_type from SwapQuote #246

Workflow file for this run

name: Gemstone iOS
on:
push:
branches: ["main"]
paths:
- "gemstone/**"
pull_request:
branches: ["main"]
paths:
- "gemstone/**"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
RUST_TOOLCHAIN_VERSION: 1.82.0
jobs:
build_ios:
runs-on: macos-latest
defaults:
run:
working-directory: gemstone
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{env.RUST_TOOLCHAIN_VERSION}}
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- name: Install just
run: cargo install just
- name: Setup Xcode
run: |
sudo xcode-select -s /Applications/Xcode_16.app
- name: Test iOS
run: |
just install-ios-targets
just build-ios && just test-ios
auto_tag:
runs-on: ubuntu-latest
needs: build_ios
steps:
- uses: actions/checkout@v3
- name: Auto tag
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: anothrNick/github-tag-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: true
DEFAULT_BUMP: patch
DRY_RUN: false