Update README.md #202
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
pull_request: | |
release: | |
types: [released] | |
jobs: | |
rustfmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt | |
- run: cargo fmt --all -- --check | |
doc2readme: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/msrd0/cargo-doc2readme:nightly | |
steps: | |
- uses: actions/checkout@v3 | |
- run: apk add --no-cache libxrandr-dev | |
- run: cargo doc2readme --check --all-features --expand-macros --manifest-path more-wallpapers/Cargo.toml | |
cargo_publish: | |
if: ${{ github.event_name == 'release' }} | |
needs: [rustfmt, doc2readme, check] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt | |
- name: Install xrandr | |
run: sudo apt-get update && sudo apt-get install -y libxrandr-dev | |
- run: cargo publish --package more-wallpapers --token ${{ secrets.CRATES_IO_TOKEN }} | |
check: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu, windows, macos] | |
features: ["", --all-features, --features rand, --features fallback] | |
rust_version: [stable, 1.65] | |
workspace: [-p more-wallpapers] | |
include: | |
- workspace: -p setmw | |
rust_version: stable | |
os: ubuntu | |
- workspace: -p setmw | |
rust_version: stable | |
os: windows | |
- workspace: -p setmw | |
rust_version: stable | |
os: macos | |
exclude: | |
- os: windows | |
features: --features rand | |
- os: windows | |
features: "" | |
- os: macos | |
features: --features rand | |
- os: macos | |
features: "" | |
name: "${{ matrix.os }} ${{ matrix.rust_version }} ${{ matrix.features }} ${{ matrix.workspace }}" | |
runs-on: ${{ matrix.os }}-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ matrix.rust_version }} | |
id: "rust-toolchain" | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/git | |
~/.cargo/registry | |
target | |
key: "${{runner.os}} Rust ${{steps.rust-toolchain.outputs.cachekey}} ${{matrix.features}} ${{ matrix.workspace }} Lock ${{hashFiles('Cargo.lock')}}" | |
restore-keys: "${{runner.os}} Rust ${{steps.rust-toolchain.outputs.cachekey}}" | |
- name: Install xrandr | |
if: ${{ matrix.os == 'ubuntu' }} | |
run: sudo apt-get update && sudo apt-get install -y libxrandr-dev | |
- run: cargo test ${{ matrix.workspace }} ${{ matrix.features }} | |
env: | |
RUST_BACKTRACE: 1 |