Skip to content

Update package version to 3.0.0 #24

Update package version to 3.0.0

Update package version to 3.0.0 #24

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build slim
run: cargo build --no-default-features --verbose
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Upload artifact
uses: actions/[email protected]
with:
name: ffbuildtool-linux
path: target/debug/ffbuildtool*
if-no-files-found: error
build-windows:
runs-on: windows-latest
steps:
- name: vcpkg install
run: vcpkg install liblzma:x64-windows-static-md
- name: vcpkg integrate
run: vcpkg integrate install
- uses: actions/checkout@v4
- name: Build slim
run: cargo build --no-default-features --verbose
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Upload artifact
uses: actions/[email protected]
with:
name: ffbuildtool-windows
path: target/debug/ffbuildtool*
if-no-files-found: error