Skip to content

Commit 92a0ed9

Browse files
committed
added hexlet-check
1 parent 211f878 commit 92a0ed9

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/hexlet-check.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
##########################################################################
2+
# DO NOT DELETE OR EDIT THIS FILE #
3+
# This file is automatically generated and used to run tests #
4+
##########################################################################
5+
6+
name: hexlet-check
7+
8+
on:
9+
push:
10+
branches:
11+
- '**'
12+
tags:
13+
- '**'
14+
15+
jobs:
16+
clean-cache:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Purge GitHub Actions Cache
20+
uses: geekyeggo/delete-cache@v2
21+
with:
22+
cache: 'gradle'
23+
24+
build:
25+
runs-on: ubuntu-latest
26+
steps:
27+
- uses: actions/checkout@v4
28+
29+
- name: Hexlet project check
30+
uses: hexlet/project-action@release
31+
with:
32+
hexlet-id: ${{ secrets.HEXLET_ID }}
33+
34+

0 commit comments

Comments
 (0)