Files
isideload/.github/workflows/build.yml
2025-12-16 07:50:38 -05:00

42 lines
826 B
YAML

name: "Build isideload"
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- platform: "ubuntu-latest"
- platform: "windows-latest"
- platform: "macos-latest"
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Cache Rust dependencies
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-${{ hashFiles('Cargo.lock') }}
restore-keys: |
${{ runner.os }}-
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: Build
run: cargo build