Skip to content

Fix Docker entrypoint #8

Fix Docker entrypoint

Fix Docker entrypoint #8

Workflow file for this run

name: ci
on:
push:
branches:
- main
- master
- github-workflows
pull_request:
branches:
- main
- master
- github-workflows
jobs:
test:
name: test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
rust: [1.84.0, stable]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust
uses: hecrj/setup-rust-action@v2
with:
rust-version: ${{ matrix.rust }}
- if: matrix.rust == 'stable'
run: rustup component add clippy
- if: matrix.rust == 'stable'
run: cargo clippy -- -D warnings
- run: cargo build --verbose --locked
- run: cargo test --verbose