Skip to content

Github Actions are running by @Azumi4han #7

Github Actions are running by @Azumi4han

Github Actions are running by @Azumi4han #7

Workflow file for this run

name: safe-vk-actions
run-name: Github Actions are running by @${{ github.actor }}
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