Add test.yml for normal push actions
Some checks failed
Run Tests on Code / run-tests (push) Failing after 6s
Some checks failed
Run Tests on Code / run-tests (push) Failing after 6s
This commit is contained in:
parent
5bc263d151
commit
ab0b5ce4af
1 changed files with 31 additions and 0 deletions
31
.forgejo/workflows/test.yml
Normal file
31
.forgejo/workflows/test.yml
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
name: 'Run Tests on Code'
|
||||||
|
author: 'Neshura'
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags-ignore:
|
||||||
|
- '**'
|
||||||
|
branches:
|
||||||
|
- '**'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
run-tests:
|
||||||
|
runs-on: docker
|
||||||
|
container: forgejo.neshweb.net/ci-docker-images/rust-node:latest
|
||||||
|
steps:
|
||||||
|
- name: Add Clippy
|
||||||
|
run: rustup component add clippy
|
||||||
|
- name: Checking Out Repository Code
|
||||||
|
uses: https://code.forgejo.org/actions/checkout@v3
|
||||||
|
- name: Set Up Cargo Cache
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.cargo/bin/
|
||||||
|
~/.cargo/registry/index/
|
||||||
|
~/.cargo/registry/cache/
|
||||||
|
~/.cargo/git/db/
|
||||||
|
target/
|
||||||
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
||||||
|
- name: Run Clippy
|
||||||
|
run: cargo clippy
|
Reference in a new issue