lune-packaging/.github/workflows/build.yaml

24 lines
389 B
YAML
Raw Normal View History

2023-01-19 01:47:14 +00:00
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