fix(deps): bump tonlibjson-sys/ton from 1b7c46f
to 050a984
#762
Workflow file for this run
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: Test PR | |
on: | |
pull_request: | |
branches: | |
- "master" | |
paths-ignore: | |
- .github/workflows/charts-* | |
- charts/** | |
- .release-please-manifest.json | |
- release-please-config.json | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pr-tests: | |
strategy: | |
matrix: | |
os: ['ubuntu-latest', 'macos-14', 'macos-13'] | |
features: ['', 'testnet'] | |
name: Run cargo tests | |
runs-on: ${{ matrix.os }} | |
permissions: | |
contents: read | |
checks: write | |
security-events: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: ./.github/actions/prepare | |
if: runner.os == 'Linux' | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: arduino/setup-protoc@v3 | |
if: runner.os == 'Linux' | |
- run: brew install secp256k1 libsodium lz4 protobuf autoconf automake libtool | |
if: runner.os == 'macOS' | |
- uses: mozilla-actions/[email protected] | |
- run: cargo test --no-fail-fast --features "${{ matrix.features }}" | |
env: | |
CARGO_INCREMENTAL: "0" | |
SCCACHE_GHA_ENABLED: "true" | |
RUSTC_WRAPPER: "sccache" | |
CMAKE_C_COMPILER_LAUNCHER: "sccache" | |
CMAKE_CXX_COMPILER_LAUNCHER: "sccache" |