Skip to content

Merge pull request #89 from Thaumy/main #23

Merge pull request #89 from Thaumy/main

Merge pull request #89 from Thaumy/main #23

Workflow file for this run

name: Check if Psh can build
on:
push:
pull_request:
env:
RUST_BACKTRACE: 1
jobs:
build:
name: Build Check
runs-on: ${{ matrix.os }}
strategy:
matrix:
# we only need to support linux
os: [ubuntu-20.04, ubuntu-latest]
# TODO: do we want to support musl?
target: [x86_64-unknown-linux-gnu]
# make sure it runs on latest stable rust
toolchain: [stable]
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
steps:
- uses: actions/checkout/@v4
- name: Install Toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
components: clippy
- name: Show environment information
uses: ./.github/actions/show-env
- name: Install Protoc
uses: arduino/setup-protoc@v3
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- name: Build Psh
uses: ./.github/actions/build
with:
target: ${{ matrix.target }}
release: false