Skip to content

Bump openssl from 0.10.57 to 0.10.60 #73

Bump openssl from 0.10.57 to 0.10.60

Bump openssl from 0.10.57 to 0.10.60 #73

Workflow file for this run

name: podsync ci
on:
push:
pull_request:
jobs:
check-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Rust Setup
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- name: Format
uses: actions-rs/cargo@v1
continue-on-error: true
with:
command: fmt
args: --all -- --check
- name: Check
uses: actions-rs/cargo@v1
with:
command: check
- name: Test
uses: actions-rs/cargo@v1
with:
command: test