Skip to content

feat: Support building on Windows #27

feat: Support building on Windows

feat: Support building on Windows #27

Workflow file for this run

name: Build
on:
- push
- pull_request
jobs:
debian_x86:
runs-on: ubuntu-22.04
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: Run cargo build
run: cargo build
- name: Run cargo test
run: cargo test
macos_x86:
runs-on: macos-12
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: Install coreutils
run: brew install coreutils
- name: Run cargo build
run: cargo build
- name: Run cargo test
run: cargo test
windows_2019_x86:
runs-on: windows-2019
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run cargo build
run: cargo build
windows_2022_x86:
runs-on: windows-2022
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run cargo build
run: cargo build