Skip to content

Commit

Permalink
update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mazznoer committed Aug 19, 2024
1 parent c7e4105 commit f18977e
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,22 +39,20 @@ jobs:
- name: Run gradient
if: matrix.os != 'windows-latest'
continue-on-error: true
run: |
echo "Test"
./target/debug/gradient
echo "Preset"
./target/debug/gradient -p magma
./target/debug/gradient -p magma -W 45
echo "Take colors"
./target/debug/gradient -p sinebow -t 10 | cat
./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'
continue-on-error: true
run: |
echo "Test"
target/debug/gradient
echo "Preset"
target/debug/gradient -p magma
target/debug/gradient -p magma -W 45
echo "Take colors"
target/debug/gradient -p sinebow -t 10 | cat
target/debug/gradient -p sinebow -t 10
echo "CSS gradient"
target/debug/gradient --css "deeppink, gold, seagreen" -W 45

0 comments on commit f18977e

Please sign in to comment.