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

28 lines
478 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"
shell: bash
- name: Testing
run: |
cargo --help
cargo --version
shell: bash