Skip to content

chore(deps): bump zerocopy from 0.7.26 to 0.7.31 #168

chore(deps): bump zerocopy from 0.7.26 to 0.7.31

chore(deps): bump zerocopy from 0.7.26 to 0.7.31 #168

Workflow file for this run

name: Lint, format, build and test
on:
push:
jobs:
checks:
runs-on: ubuntu-22.04
services:
postgres:
image: postgres
env:
POSTGRES_USER: user
POSTGRES_PASSWORD: pass
POSTGRES_DB: test-bot
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
redis:
image: redis
ports:
- 6379:6379
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/prepare
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
key: checks-cargo-${{ hashFiles('**/Cargo.lock') }}
- run: just fmt-check
- run: just lint-err
- run: just build
- run: just test-cov
env:
DATABASE_URL: postgres://user:pass@localhost:5432/test-bot
- uses: coverallsapp/github-action@master
with:
path-to-lcov: lcov.info
github-token: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true