Skip to content

Commit

Permalink
chore: see if combining in one job still works
Browse files Browse the repository at this point in the history
  • Loading branch information
vmx committed Oct 18, 2023
1 parent e9c8b27 commit 7293ec3
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Extract MSRV from Cargo.toml
run: MSRV=$(cargo metadata --format-version 1 --no-deps | jq -r '.packages[0].rust_version')
- name: Set MSRV as output
id: msrv
#run: echo "MSRV=$MSRV" >> "$GITHUB_OUTPUT"
run: echo "MSRV=1.67.1" >> "$GITHUB_OUTPUT"
run: |
MSRV=$(cargo metadata --format-version 1 --no-deps | jq -r '.packages[0].rust_version')
echo "MSRV=1.67.1" >> "$GITHUB_OUTPUT"
## NOTE vmx 2022-06-14: currently doesn't work, hence run it on CircleCI
## for now.
Expand Down

0 comments on commit 7293ec3

Please sign in to comment.