Skip to content

build(deps): bump tempfile from 3.10.0 to 3.10.1 #117

build(deps): bump tempfile from 3.10.0 to 3.10.1

build(deps): bump tempfile from 3.10.0 to 3.10.1 #117

Workflow file for this run

name: ci
on:
push:
branches: [master, staging, trying]
pull_request:
branches: [master]
workflow_dispatch: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install rust nightly
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
components: rustfmt, clippy
- name: install nix
uses: cachix/install-nix-action@v16
- name: submodules
run: git submodule update --init
- name: build
run: cargo build --verbose --examples
- name: build release # for integ tests
run: cargo build --release
- name: integ
run: cd tests && make integ-nightly