mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-23 00:44:55 +03:00
Add check valgrind
This commit is contained in:
parent
fa5068fb63
commit
86a7b6bf29
7
.github/workflows/check.yml
vendored
7
.github/workflows/check.yml
vendored
@ -100,6 +100,13 @@ jobs:
|
|||||||
if: always()
|
if: always()
|
||||||
run: bin/check/doc.sh
|
run: bin/check/doc.sh
|
||||||
|
|
||||||
|
- name: Check Valgrind
|
||||||
|
if: always()
|
||||||
|
run: |
|
||||||
|
sudo apt-get install -y valgrind
|
||||||
|
cargo install cargo-valgrind
|
||||||
|
bin/check/valgrind.sh
|
||||||
|
|
||||||
- name: Check completion files
|
- name: Check completion files
|
||||||
if: always()
|
if: always()
|
||||||
run: |
|
run: |
|
||||||
|
7
bin/check/valgrind.sh
Executable file
7
bin/check/valgrind.sh
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -Eeuo pipefail
|
||||||
|
|
||||||
|
cat <<END | cargo valgrind run -p hurl -- --test
|
||||||
|
GET https://unpkg.com/vue@3.4.27/dist/vue.global.prod.js
|
||||||
|
HTTP 200
|
||||||
|
END
|
Loading…
Reference in New Issue
Block a user