@@ -22,62 +22,61 @@ jobs:
22
22
matrix :
23
23
os :
24
24
[macos-latest-xlarge, ubuntu-latest-16-cores, windows-latest-16-cores]
25
- name : Plugins test on ${{ matrix.os }}
25
+ name : ${{ matrix.os }}
26
26
runs-on : ${{ matrix.os }}
27
27
defaults :
28
28
run :
29
29
shell : bash
30
30
31
31
steps :
32
- - name : 🛑 Cancel Previous Runs
32
+ - name : Cancel Previous Runs
33
33
uses : styfle/cancel-workflow-action@0.12.1
34
34
35
- - name : ⬇️ Checkout repo
35
+ - name : Checkout repo
36
36
uses : actions/checkout@v4
37
37
38
- - name : 📦 Use Node.js
38
+ - name : Use Node.js
39
39
uses : actions/setup-node@v4
40
40
with :
41
41
cache : " npm"
42
42
cache-dependency-path : plugins/package-lock.json
43
43
44
- # Generate Cache key for Linux/macOS
45
- - name : 🔒 Set CACHE_MONTH on Linux/macOS
44
+ - name : Generate cache key
46
45
run : echo "CACHE_MONTH=$(date +'%Y-%m')" >> $GITHUB_ENV
47
46
48
- - name : 💾 Cache qlty tools
47
+ - name : Cache qlty tools
49
48
uses : actions/cache@v3
50
49
with :
51
50
path : ~/.qlty
52
51
key : ${{ runner.os }}-qlty-${{ env.CACHE_MONTH }}
53
52
54
- - name : 📦 Setup PHP with PECL extension
53
+ - name : Setup PHP with PECL extension
55
54
uses : shivammathur/setup-php@v2
56
55
if : matrix.os == 'macos-latest-xlarge'
57
56
58
- - name : 📦 Setup Ruby
57
+ - name : Setup Ruby
59
58
uses : ruby/setup-ruby@v1
60
59
with :
61
60
ruby-version : 3.3.0
62
61
if : matrix.os == 'windows-latest-16-cores'
63
62
64
- - name : 🦀 Install Rust toolchain
63
+ - name : Install Rust toolchain
65
64
uses : actions-rs/toolchain@v1
66
65
with :
67
66
toolchain : stable
68
67
69
- - name : 🫙 Cache Rust
68
+ - name : Cache Rust
70
69
uses : Swatinem/rust-cache@v2
71
70
72
- - name : ⚙️ cargo build
71
+ - name : cargo build
73
72
run : cargo build
74
73
env :
75
74
RUST_BACKTRACE : 1
76
75
77
76
- name : Move qlty into PATH
78
77
run : echo "${{ github.workspace }}/target/debug" >> $GITHUB_PATH
79
78
80
- - name : 🔍 Check qlty version
79
+ - name : Check qlty version
81
80
run : qlty --version
82
81
83
82
# Login to the GitHub Container Registry to reduce trivy rate limiting errors
0 commit comments