Skip to content

Commit

Permalink
new step
Browse files Browse the repository at this point in the history
  • Loading branch information
MBU1366 committed Oct 8, 2024
0 parents commit f0b401d
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Automatic tests

After completing all the steps in the project, automatic tests will become available to you. Tests are run on each commit - once all tasks in the Hexlet interface are completed, make a commit, and the tests will run automatically.

The hexlet-check.yml file is responsible for running these tests - do not delete this file, edit it, or rename the repository.
24 changes: 24 additions & 0 deletions .github/workflows/hexlet-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
##########################################################################
# DO NOT DELETE OR EDIT THIS FILE #
# This file is automatically generated and used to run tests #
##########################################################################

name: hexlet-check

on:
push:
branches:
- '**'
tags:
- '**'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Hexlet project check
uses: hexlet/project-action@release
with:
hexlet-id: ${{ secrets.HEXLET_ID }}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
### Hexlet tests and linter status:
[![Actions Status](https://github.com/MBU1366/qa-engineer-project-85/actions/workflows/hexlet-check.yml/badge.svg)](https://github.com/MBU1366/qa-engineer-project-85/actions)
17 changes: 17 additions & 0 deletions requirements.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
functional:
- требование 1
- требование 2
non-functional:
- Сайт должен быть разработан с учетом удобства использования и оптимизирован для скорости работы
- Сайт должен быть безопасным и защищать данные пользователя
- Сайт должен быть удобным на мобильном устройстве
- Сайт должен быть протестирован на совместимость с последними версиями браузеров
- Сайт должен быть способен обрабатывать большое количество трафика (например, 1000 одновременных пользователей)
implicit:
- Соответствие законодательству;
- Масштабируемость;
- Локализация;
- Интеграция;
- Персонализация;
- Интернационализация.

0 comments on commit f0b401d

Please sign in to comment.