Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Bump fsevents from 1.2.9 to 1.2.13 in /examples/RN #640

Bump fsevents from 1.2.9 to 1.2.13 in /examples/RN

Bump fsevents from 1.2.9 to 1.2.13 in /examples/RN #640

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: check
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.47.0
override: true
- run: |
echo "KDF_ROUNDS=1024" >> $GITHUB_ENV
- uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --all -- --test-threads=1
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check