Skip to content

Feat/command history when in shell action #2

Feat/command history when in shell action

Feat/command history when in shell action #2

Workflow file for this run

name: Pull request build
on:
pull_request:
jobs:
build-and-upload:
name: build and upload
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- build: linux
os: ubuntu-latest
target: x86_64-unknown-linux-musl
- build: macos
os: macos-latest
target: aarch64-apple-darwin
- build: windows-gnu
os: windows-latest
target: x86_64-pc-windows-gnu
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install Rust
# Or @nightly if you want
uses: dtolnay/rust-toolchain@stable
# Arguments to pass in
with:
# Make Rust compile to our target (defined in the matrix)
targets: ${{ matrix.target }}
- name: Build project
run: cargo build --release --target ${{ matrix.target }}