mirror of
https://github.com/ViViDboarder/bitwarden_rs_ldap.git
synced 2024-11-10 05:26:27 +00:00
3dda190c3a
Bump hadolint/hadolint-action from 1.6.0 to 3.1.0
36 lines
557 B
YAML
36 lines
557 B
YAML
---
|
|
name: Tests
|
|
|
|
"on":
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build
|
|
run: cargo build --verbose
|
|
|
|
- name: Run tests
|
|
run: cargo test --verbose
|
|
|
|
- uses: actions/setup-python@v4
|
|
|
|
- name: Run pre-commit hooks
|
|
uses: pre-commit/action@v3.0.0
|
|
env:
|
|
SKIP: hadolint
|
|
|
|
- name: Run hadolint
|
|
uses: hadolint/hadolint-action@v3.1.0
|