mirror of
https://github.com/Vomitblood/stort.git
synced 2024-12-02 16:51:14 +08:00
29 lines
503 B
YAML
29 lines
503 B
YAML
name: Test Build Frontend
|
|
|
|
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"
|
|
cargo --version
|
|
shell: bash
|
|
|
|
- name: Testing
|
|
run: |
|
|
cargo --help
|
|
cargo --version
|
|
shell: bash
|