Skip to content

Move additional scripts to scripts directory #1

Move additional scripts to scripts directory

Move additional scripts to scripts directory #1

Workflow file for this run

name: build
on:
pull_request:
push:
branches:
- master
defaults:
run:
shell: bash
jobs:
check:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
default: true
components: rustfmt, clippy
- name: Install Rust beta toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: beta
components: clippy
- name: Install Rust nightly toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
components: clippy
- name: Install Rust 1.70.0 toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.70.0
components: clippy
- name: Run build and test script
run: ./check.sh