Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Goodbye icelake, Hello iceberg! #568

Goodbye icelake, Hello iceberg!

Goodbye icelake, Hello iceberg! #568

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update Rust Stable
run: rustup update stable
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-targets --workspace --all-features -- -D warnings
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update Rust Stable
run: rustup update stable
- name: Build
run: cargo build --all-features