We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c553989 commit f3c9245Copy full SHA for f3c9245
.github/workflows/main.yml
@@ -36,6 +36,29 @@ jobs:
36
env:
37
MAKE: /usr/local/bin/make-4.4.1
38
39
+ test_musl:
40
+ name: Test (stable, alpine-latest)
41
+ container: rust:alpine
42
+ runs-on: ubuntu-latest
43
+ steps:
44
+ - uses: actions/checkout@master
45
+
46
+ - name: Install make dependencies
47
+ run: apk add musl-dev bash curl make tar
48
49
+ - uses: Swatinem/rust-cache@v2
50
51
+ - name: Compile make 4.4.1
52
+ uses: ./.github/actions/compile-make
53
+ with:
54
+ version: 4.4.1
55
56
+ - name: Test against GNU Make 4.4.1
57
+ shell: bash
58
+ run: cargo test --locked
59
+ env:
60
+ MAKE: /usr/local/bin/make-4.4.1
61
62
rustfmt:
63
name: Rustfmt
64
runs-on: ubuntu-latest
0 commit comments