-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit f0b401d
Showing
4 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
functional: | ||
- требование 1 | ||
- требование 2 | ||
non-functional: | ||
- Сайт должен быть разработан с учетом удобства использования и оптимизирован для скорости работы | ||
- Сайт должен быть безопасным и защищать данные пользователя | ||
- Сайт должен быть удобным на мобильном устройстве | ||
- Сайт должен быть протестирован на совместимость с последними версиями браузеров | ||
- Сайт должен быть способен обрабатывать большое количество трафика (например, 1000 одновременных пользователей) | ||
implicit: | ||
- Соответствие законодательству; | ||
- Масштабируемость; | ||
- Локализация; | ||
- Интеграция; | ||
- Персонализация; | ||
- Интернационализация. |