Skip to content

readme

readme #3

Workflow file for this run

name: Rust
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: RUSTFLAGS='-C target-feature=+crt-static' sudo apt-get update && cargo build --verbose --release --target x86_64-unknown-linux-gnu
build-win:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose --release