Skip to content

Bump anyhow from 1.0.71 to 1.0.72 #52

Bump anyhow from 1.0.71 to 1.0.72

Bump anyhow from 1.0.71 to 1.0.72 #52

Workflow file for this run

name: "CI/CD"
on:
- push
- pull_request
jobs:
lint:
name: lint
uses: wolcomm/.github/.github/workflows/rust-lint.yml@master
test:
name: test
strategy:
fail-fast: false
matrix:
toolchain: [stable, nightly]
args:
- --lib
- --test versions
include:
- toolchain: nightly
args: --doc
uses: wolcomm/.github/.github/workflows/rust-test.yml@master
with:
toolchain: ${{ matrix.toolchain }}
args: ${{ matrix.args }}
publish-lib:
name: publish-lib
if: ${{ github.event_name == 'push' &&
startsWith(github.ref, 'refs/tag') }}
needs:
- lint
- test
uses: wolcomm/.github/.github/workflows/rust-publish.yml@explicit-package

Check failure on line 37 in .github/workflows/cicd.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/cicd.yml

Invalid workflow file

error parsing called workflow ".github/workflows/cicd.yml" -> "wolcomm/.github/.github/workflows/rust-publish.yml@explicit-package" : failed to fetch workflow: reference to workflow should be either a valid branch, tag, or commit
with:
package: bgpfu-lib
secrets:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}
publish-cli:
name: publish-cli
if: ${{ github.event_name == 'push' &&
startsWith(github.ref, 'refs/tag') }}
needs:
- publish-lib
uses: wolcomm/.github/.github/workflows/rust-publish.yml@explicit-package
with:
package: bgpfu-cli
secrets:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}