Skip to content

rename --list-named-colors -> --named-colors #6

rename --list-named-colors -> --named-colors

rename --list-named-colors -> --named-colors #6

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Build
run: |
cargo build --verbose --all-features
env:
OUT_DIR: target
- name: Run tests
run: |
cargo test --verbose --all-features
- name: Run cargo clippy
run: |
cargo clippy --all-features -- -D warnings
- name: Run cargo fmt
run: |
cargo fmt --all -- --check
- name: Check shell completions
if: matrix.os != 'windows-latest'
run: |
ls -A target/completions
- name: Run gradient
if: matrix.os != 'windows-latest'
run: |
echo "Preset"
./target/debug/gradient -p magma -W 45
echo "Take colors"
./target/debug/gradient -p sinebow -t 10
echo "CSS gradient"
./target/debug/gradient --css "deeppink, gold, seagreen" -W 45
- name: Run gradient (Windows)
if: matrix.os == 'windows-latest'
run: |
echo "Preset"
target/debug/gradient -p magma -W 45
echo "Take colors"
target/debug/gradient -p sinebow -t 10
echo "CSS gradient"
target/debug/gradient --css "deeppink, gold, seagreen" -W 45