Skip to content

test: Just a test pull request #268

test: Just a test pull request

test: Just a test pull request #268

Workflow file for this run

name: build
on:
pull_request:
branches-ignore:
- renovate/*
push:
branches:
- master
- alpha
- beta
- renovate/*
tags-ignore:
- "**"
concurrency: ci-${{ github.ref }}
jobs:
check:
uses: iTrooz/vtavernier-github-workflows/.github/workflows/check-rust.yml@v1
build:
uses: iTrooz/vtavernier-github-workflows/.github/workflows/build-rust-bin.yml@v1

Check failure on line 23 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

error parsing called workflow ".github/workflows/build.yml" -> "iTrooz/vtavernier-github-workflows/.github/workflows/build-rust-bin.yml@v1" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
needs:
- check
strategy:
fail-fast: false
matrix:
include:
- runs-on: ubuntu-latest
target: x86_64-unknown-linux-gnu
- runs-on: windows-latest
target: x86_64-pc-windows-msvc
with:
runs-on: ${{ matrix.runs-on }}
rust-target: ${{ matrix.target }}
artifact-name: artifact
upload-coverage-to: codecov
secrets:
GH_TOKEN: ${{ secrets.GH_TOKEN || secrets.GITHUB_TOKEN }}
release:
uses: iTrooz/vtavernier-github-workflows/.github/workflows/release-semantic.yml@v1
needs:
- build
with:
artifact-name: artifact
secrets:
GH_TOKEN: ${{ secrets.GH_TOKEN || secrets.GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}