Skip to content

Next release is 1.5.0 #148

Next release is 1.5.0

Next release is 1.5.0 #148

Workflow file for this run

name: Build
on: [ push ]
jobs:
Linux:
name: Build on Linux
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Create Build Environment
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
- name: Build
working-directory: ${{github.workspace}}
shell: bash
run: cargo build
- name: Lint
working-directory: ${{github.workspace}}
shell: bash
run: |
rustup component add clippy
cargo clippy
MacOS:
name: Build on MacOS
runs-on: macos-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Create Build Environment
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
- name: Build
working-directory: ${{github.workspace}}
shell: bash
run: cargo build
- name: Lint
working-directory: ${{github.workspace}}
shell: bash
run: |
rustup component add clippy
cargo clippy
Windows:
name: Build on Windows
runs-on: windows-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Create Build Environment
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
- name: Build
shell: pwsh
run: cargo build
- name: Lint
shell: pwsh
run: |
rustup component add clippy
cargo clippy