Skip to content

chore: Organize GitHub Actions workflows under .github directory #1

chore: Organize GitHub Actions workflows under .github directory

chore: Organize GitHub Actions workflows under .github directory #1

Workflow file for this run

name: safe-vk-actions
rune-name: Github Actions are running by @${{ github.actor }}

Check failure on line 2 in .github/workflows/rust.yaml

View workflow run for this annotation

GitHub Actions / safe-vk-actions

Invalid workflow file

The workflow is not valid. .github/workflows/rust.yaml (Line: 2, Col: 1): Unexpected value 'rune-name'
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose