lune-packaging/.github/workflows/build.yaml
2023-01-18 20:47:14 -05:00

23 lines
389 B
YAML

name: Build
on:
push:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
- name: Build
run: cargo build --locked --verbose