Skip to content
This repository has been archived by the owner on Apr 13, 2024. It is now read-only.

Merge pull request #31 from KisaragiEffective/renovate/actions-checko… #77

Merge pull request #31 from KisaragiEffective/renovate/actions-checko…

Merge pull request #31 from KisaragiEffective/renovate/actions-checko… #77

Workflow file for this run

name: Rust
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop, master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Clippy
run: cargo clippy
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose