Skip to content

Fix deprecated warnings in Actions #555

Fix deprecated warnings in Actions

Fix deprecated warnings in Actions #555

Workflow file for this run

on:
push:
branches:
- main
pull_request:
name: CI
jobs:
check:
name: Check
strategy:
matrix:
# GitHub Actions: Introducing the new M1 macOS runner available to open source! - The GitHub Blog
# https://github.blog/changelog/2024-01-30-github-actions-introducing-the-new-m1-macos-runner-available-to-open-source/
# os: [macos-14, ubuntu-latest]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Install Protoc
uses: arduino/setup-protoc@v3
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
fmt:
name: Fmt
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt
- name: Install Protoc
uses: arduino/setup-protoc@v3
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
build:
name: Build
strategy:
matrix:
# GitHub Actions: Introducing the new M1 macOS runner available to open source! - The GitHub Blog
# https://github.blog/changelog/2024-01-30-github-actions-introducing-the-new-m1-macos-runner-available-to-open-source/
# os: [macos-14, ubuntu-latest]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Install Protoc
uses: arduino/setup-protoc@v3
- name: Run build
uses: actions-rs/cargo@v1
with:
command: build