Skip to content

Bump openssl from 0.10.51 to 0.10.55 #232

Bump openssl from 0.10.51 to 0.10.55

Bump openssl from 0.10.51 to 0.10.55 #232

Workflow file for this run

name: Tests
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_USER: postgres_user
POSTGRES_PASSWORD: test
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v3
- name: Cargo cache
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cargo build --verbose
- name: Ensure fmt finds no changes
run: cargo fmt -- --check
# - name: Ensure clippy finds no issues
# run: cargo clippy
- name: Run tests
run: cargo test --verbose