Skip to content

wip

wip #27

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 evaluate
- --test versions
include:
- toolchain: nightly
args: --doc
uses: wolcomm/.github/.github/workflows/rust-test.yml@master

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

View workflow run for this annotation

GitHub Actions / CI/CD

Invalid workflow file

The workflow is not valid. .github/workflows/cicd.yml (Line: 26, Col: 11): Secret CODECOV_TOKEN is required, but not provided while calling.
with:
toolchain: ${{ matrix.toolchain }}
args: ${{ matrix.args }}
publish:
name: publish
if: ${{ github.event_name == 'push' &&
startsWith(github.ref, 'refs/tag') }}
needs:
- lint
- test
uses: wolcomm/.github/.github/workflows/rust-publish.yml@master
secrets: inherit