Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/fjall-rs/value-log
Browse files Browse the repository at this point in the history
  • Loading branch information
marvin-j97 committed Mar 2, 2024
2 parents c8ca111 + a07355f commit 580029a
Showing 1 changed file with 74 additions and 0 deletions.
74 changes: 74 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
name: Tests

on:
push:
branches:
- main
pull_request:
branches:
- "**"

env:
CARGO_TERM_COLOR: always

jobs:
test:
timeout-minutes: 20
strategy:
matrix:
rust_version:
- stable
- "1.74.0" # MSRV
os:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust_version }}
- name: Add rustfmt
run: rustup component add rustfmt
- name: Add clippy
run: rustup component add clippy
- name: Set up cargo cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: ${{ runner.os }}-cargo
- name: Build
run: cargo build -v
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy
- name: Run tests
run: cargo test -v -- --nocapture
env:
RUST_LOG: debug
cross:
timeout-minutes: 20
name: cross
strategy:
matrix:
target:
- aarch64-unknown-linux-gnu
# - aarch64-linux-android
- aarch64-unknown-linux-musl
# - i686-linux-android
# - x86_64-linux-android
# - i686-unknown-linux-gnu
- powerpc64-unknown-linux-gnu
#- mips64-unknown-linux-gnuabi64
- riscv64gc-unknown-linux-gnu
#- x86_64-apple-darwin
#- aarch64-apple-darwin
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: cross build --target ${{ matrix.target }}
run: |
cargo install cross
cross build --target ${{ matrix.target }}

0 comments on commit 580029a

Please sign in to comment.