1
Fork 0
mirror of https://github.com/Steffo99/patched-porobot.git synced 2024-12-22 17:44:22 +00:00

I'm not sure of what is currently being committed

This commit is contained in:
Steffo 2022-10-20 14:32:15 +00:00 committed by GitHub
parent d879141da8
commit 6fcfade31f
Signed by: github
GPG key ID: 4AEE18F83AFDEB23

32
.github/workflows/tests.yml vendored Normal file
View file

@ -0,0 +1,32 @@
name: "Continuous integration"
on:
pull_request:
branches:
- main
workflow_call:
jobs:
cargotest:
name: "Run checks and tests on the repository"
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v3
- name: "Install Rust toolchain"
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: "Run cargo clippy"
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
- name: "Run cargo test"
uses: actions-rs/cargo@v1
with:
command: test