mirror of
https://github.com/Vomitblood/stort.git
synced 2025-02-08 02:38:40 +08:00
28 lines
466 B
YAML
28 lines
466 B
YAML
|
name: Testing
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- "*"
|
||
|
|
||
|
permissions:
|
||
|
contents: write
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Install Rust
|
||
|
run: |
|
||
|
apt update && apt install -y curl
|
||
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
||
|
. "$HOME/.cargo/env"
|
||
|
shell: bash
|
||
|
|
||
|
- name: Testing
|
||
|
run: |
|
||
|
cargo --help
|
||
|
cargo --version
|
||
|
shell: bash
|