Skip to content

chore(deps): bump rexml from 3.3.6 to 3.3.9 in /wrappers/react-native/example #1022

chore(deps): bump rexml from 3.3.6 to 3.3.9 in /wrappers/react-native/example

chore(deps): bump rexml from 3.3.6 to 3.3.9 in /wrappers/react-native/example #1022

Workflow file for this run

name: ci-wrapper-c
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build_test:
name: Build & Test C Wrapper
runs-on: macos-latest
defaults:
run:
working-directory: ./wrappers/c
steps:
- name: Checkout
uses: actions/checkout@83b7061638ee4956cf7545a6f7efe594e5ad0247 # [email protected]
- name: Setup rust toolchain
uses: actions-rs/toolchain@b2417cde72dcf67f306c0ae8e0828a81bf0b189f # [email protected]
with:
toolchain: nightly # Note this has to be nightly because the header generation step does not work on stable
override: true
- name: Generate headers
run: make generate_headers
shell: bash
- name: Build
run: make build
shell: bash
- name: Test
run: make test
shell: bash
- name: Run leaks
run: make check_leaks_macos
shell: bash