We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07d8c84 commit 6791187Copy full SHA for 6791187
.github/workflows/ci.yml
@@ -21,11 +21,14 @@ jobs:
21
steps:
22
- uses: actions/checkout@v3
23
24
- - name: "Create bare bones Scarb.toml for cache testing"
+ - name: "Create bare bones Scarb.lock for cache testing"
25
shell: bash
26
run: |
27
cat <<EOF > Scarb.toml
28
- [package]
+ # Code generated by scarb DO NOT EDIT.
29
+ version = 1
30
+
31
+ [[package]]
32
name = "example_package"
33
version = "1.0.0"
34
EOF
@@ -48,6 +51,7 @@ jobs:
48
51
uses: ./
49
52
- run: scarb --version | grep "scarb ${{ steps.version.outputs.LATEST_VERSION }}"
50
53
54
55
# NOTE: This is Scarb <0.7.0, thus this test checks the `cache path` fallback logic.
56
- name: "Setup Scarb with `scarb-version: 0.4.1`"
57
0 commit comments