Skip to content

Publish release on tag #13

Publish release on tag

Publish release on tag #13

Workflow file for this run

name: Build
on:
pull_request:
branches:
- master
- main
paths:
- "**.rs"
- "**.toml"
- "**.lock"
- ".github/workflows/*.yml"
jobs:
check:
runs-on: ubicloud
timeout-minutes: 15
steps:
- name: Check out
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install ffi toolchain (1.76.0)
run: |
rustup install 1.76.0-x86_64-unknown-linux-gnu
rustup default 1.76.0-x86_64-unknown-linux-gnu
- name: fmt
run: |
cargo fmt --check
- name: build
run: |
cargo check