We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 756974f commit 27dd845Copy full SHA for 27dd845
.github/workflows/example-project.yml
@@ -23,7 +23,7 @@ jobs:
23
24
steps:
25
- name: Clone Git repository
26
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
27
28
- name: Install Rust
29
uses: dtolnay/rust-toolchain@stable
@@ -72,7 +72,7 @@ jobs:
72
run: |
73
set -x
74
ARCHDIR=`dpkg-architecture -qDEB_HOST_MULTIARCH`
75
- test "$(pkg-config --cflags example_project)" = "-I/usr/local/include/example-project-0.1"
+ test $(pkg-config --cflags example_project) = -I/usr/local/include/example-project-0.1
76
test "$(pkg-config --libs example_project)" = "-L/usr/local/lib/${ARCHDIR} -lexample-project"
77
78
- name: Update dynamic linker cache
0 commit comments