stort/.github/workflows/build-validation.yml

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