mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-03 14:33:53 +03:00
54 lines
961 B
YAML
54 lines
961 B
YAML
name: check
|
|
on:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
inputs:
|
|
branch:
|
|
description: "ref branch for this workflow"
|
|
default: "master"
|
|
required: true
|
|
type: string
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
|
|
checks:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ inputs.branch }}
|
|
|
|
- name: Install Prerequisites
|
|
run: bin/check/install_prerequisites.sh
|
|
|
|
- name: Rustfmt
|
|
run: bin/check/rustfmt.sh
|
|
|
|
- name: Clippy
|
|
run: bin/check/clippy.sh
|
|
|
|
- name: Shellcheck
|
|
run: bin/check/shellcheck.sh
|
|
|
|
- name: Black
|
|
run: bin/check/black.sh
|
|
|
|
- name: Check XML/HTML files
|
|
run: bin/check/xmllint.sh
|
|
|
|
- name: Run crates update
|
|
run: bin/check/crates.sh
|
|
|
|
- name: Check CHANGELOG
|
|
run: bin/check/changelog.sh
|
|
|
|
- name: Check ad hoc
|
|
run: bin/check/ad_hoc.sh
|
|
|