From 302790cbc6c138d16980451d0a236fc5ceba4469 Mon Sep 17 00:00:00 2001 From: "Matthew D. Steele" Date: Sat, 28 Sep 2024 08:20:05 -0400 Subject: [PATCH] Add CI actions --- .github/workflows/tests.yml | 43 +++++++++++++++++++++++++++++++++++++ README.md | 6 ++++-- 2 files changed, 47 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..76f8165 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,43 @@ +name: tests + +on: + push: + paths-ignore: + - 'LICENSE-*' + - '**.md' + pull_request: + paths-ignore: + - 'LICENSE-*' + - '**.md' + +jobs: + tests: + strategy: + matrix: + os: [ ubuntu-latest, windows-latest, macos-latest] + rust: [ stable ] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v3 + - name: Install rust toolchain + uses: dtolnay/rust-toolchain@master + with: + toolchain: ${{ matrix.rust }} + - name: Test + run: cargo test --verbose + + linters: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + submodules: true + - name: Install rust toolchain + uses: dtolnay/rust-toolchain@master + with: + toolchain: stable + components: rustfmt, clippy + - name: Cargo fmt + run: cargo fmt --all -- --check + - name: Cargo clippy + run: cargo clippy --all-features -- -D warnings diff --git a/README.md b/README.md index ec7287a..7d69d8e 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,10 @@ # rust-icns -A Rust library for encoding/decoding Apple Icon Image (.icns) files. +[![Build Status](https://github.com/mdsteele/rust-icns/actions/workflows/tests.yml/badge.svg)](https://github.com/mdsteele/rust-icns/actions/workflows/tests.yml) +[![Crates.io](https://img.shields.io/crates/v/icns.svg)](https://crates.io/crates/icns) +[![Documentation](https://docs.rs/icns/badge.svg)](https://docs.rs/icns) -Documentation: https://docs.rs/icns +A Rust library for encoding/decoding Apple Icon Image (.icns) files. ## Overview