Skip to content

Merge pull request #244 from golemfactory/restore-expiration #614

Merge pull request #244 from golemfactory/restore-expiration

Merge pull request #244 from golemfactory/restore-expiration #614

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
pull_request:
branches:
- main
- release/*
env:
rust_stable: 1.68.2
jobs:
build:
name: Tests
env:
# `-D warnings` means any warnings emitted will cause build to fail
RUSTFLAGS: "-D warnings -C opt-level=z -C target-cpu=x86-64 -C debuginfo=1"
X86_64_PC_WINDOWS_MSVC_OPENSSL_DIR: c:/vcpkg/installed/x64-windows
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install Rust ${{ env.rust_stable }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.rust_stable }}
components: rustfmt, clippy
# - name: Install openssl ( Windows only )
# if: runner.os == 'Windows'
# run: |
# vcpkg install openssl:x64-windows openssl:x64-windows-static
# vcpkg list
# vcpkg integrate install
- name: Unit tests
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace
- name: Check formatting
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Clippy
uses: actions-rs/cargo@v1
with:
command: clippy