Skip to content

Test Building for Apple #6

Test Building for Apple

Test Building for Apple #6

Workflow file for this run

name: Test Build
on: workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- uses: arduino/setup-protoc@v3
- run: cargo build
- name: Get Package Version
id: get_package_version
run: echo "PACKAGE_VERSION=$(cargo pkgid | cut -d '#' -f 2 | cut -d ':' -f 2)" >> $GITHUB_ENV
- run: echo Built for version ${{ env.PACKAGE_VERSION }}
- run: cargo run