Skip to content

Commit 4c6c92f

Browse files
author
Gaurav Singh
committed
- Added mkdocs as a SSG
- Added Github actions to update site on every deploy
1 parent b2301cf commit 4c6c92f

File tree

14 files changed

+68
-0
lines changed

14 files changed

+68
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: ci
2+
on:
3+
push:
4+
branches:
5+
- master
6+
- main
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-python@v2
13+
with:
14+
python-version: 3.x
15+
- run: pip install mkdocs-material
16+
- run: mkdocs gh-deploy --force

Pipfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[[source]]
2+
name = "pypi"
3+
url = "https://pypi.org/simple"
4+
verify_ssl = true
5+
6+
[dev-packages]
7+
8+
[packages]
9+
10+
[requires]
11+
python_version = "3.8"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

docs/index.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Welcome to "How to learn test automation"
2+
3+
Test automation is huge, it is done for different layers/stacks of the application. While everyone
4+
learns based on their unique context and environments, we could all use a bit of initial guidance
5+
and help when first breaking into a specific focus area within the field.
6+
7+
## Our Goal
8+
9+
This repository hopes/aims to be a community driven reference guide for that goal with curated list
10+
of resources
11+
12+
> What are some of the blog posts, Newsletters, YouTube videos, Courses, Podcasts that are
13+
> insightful, stand out and taught you a unique concept within Test automation? Let's put that here
14+
> and file it under the required category.
15+
16+
## Categories
17+
18+
### Tech
19+
20+
Focussed on a series of resources to learn about these vast areas on how to actually go about the
21+
technical implementations
22+
23+
- [Web](tech/web.md)
24+
- [Mobile](tech/mobile.md)
25+
- [Backend](tech/backend.md)
26+
- [Accessibility](tech/accessibility.md)
27+
- [Security](tech/security.md)
28+
- [Test runners](tech/test_runners.md)
29+
30+
### Community
31+
32+
Resources on the larger Testing and automation community which help to support, while also forming
33+
the basis for providing a lot of this content and from where we all learn 🙏
34+
35+
- [Leadership](community/leadership.md)
36+
- [People to follow](community/people_to_follow.md)
37+
- [Community](community/community.md)
38+
- [Podcasts](community/podcasts.md)
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)