Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] master from fkromer:master #1

Open
wants to merge 57 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
972a919
Include Robotframework Metrics in readme.md
adiralashiva8 Apr 8, 2019
0c35d03
Merge pull request #7 from adiralashiva8/master
Apr 9, 2019
f59ed64
add helper to get available pypi projects
Jul 29, 2019
35d8ce9
add new tool pypi projects
Jul 29, 2019
20aa0aa
refactor miscs
Jul 29, 2019
73d0f1f
add new libraries
Jul 29, 2019
c8201e2
add libs and tools
Jul 29, 2019
75173cc
add white framework
Aug 21, 2019
07df07c
adding rfhub2
MaciejWiczk Sep 18, 2019
3a3a0b7
Merge pull request #8 from MaciejWiczk/master
Sep 18, 2019
a9397c8
add library to list in Readme.md
teaglebuilt Sep 27, 2019
530efe9
add github and pypi query scrips
Dec 4, 2019
6f4eec5
Merge branch 'master' of https://github.com/fkromer/awesome-robotfram…
Dec 4, 2019
22ad341
add pypi query script
Dec 4, 2019
2c2d896
Update Zoomba Library description
Wolfe1 Jan 22, 2020
2f85f97
Add the robotframework-test-assistant to Tools
Jan 23, 2020
81950ac
Merge pull request #10 from Wolfe1/patch-1
Jan 24, 2020
00c1a44
Merge pull request #11 from jg8481/master
Jan 24, 2020
049031d
Include rfswarm, rfhistoric tools info and robocon 2020
Jan 31, 2020
f5be2b5
Fixed small typo, added Remote Library Examples, and added MarketSqua…
Feb 3, 2020
df51794
Merge pull request #12 from The-Testing-Fox/master
Feb 3, 2020
def6237
Merge pull request #9 from teaglebuilt/patch-1
Feb 3, 2020
fb7502d
Merge branch 'master' into master
Feb 3, 2020
626a37d
Merge pull request #13 from jg8481/master
Feb 3, 2020
0c67210
Include VScode Extension
adiralashiva8 Feb 10, 2020
a5831f1
Merge pull request #14 from The-Testing-Fox/master
Feb 10, 2020
dfde800
fix failing build
Feb 10, 2020
22bb439
fix failing build again
Feb 10, 2020
1d3ee18
Fix typo
laurentbristiel Mar 9, 2020
654d664
Merge pull request #15 from laurentbristiel/fix_typo
Mar 9, 2020
eed7f9e
Add Robot Framework Cookbook
adrianyorke Apr 3, 2020
2b055b5
Merge pull request #17 from adrianyorke/add-cookbook
Apr 3, 2020
3bc7d44
Added RobotFramework Executor
MandyYdnam Sep 18, 2020
f1658ff
Add Robocop to Tools
bhirsz Sep 21, 2020
7d5e76b
remove extra https
bhirsz Sep 21, 2020
b2a27fa
Add robotframework-confluentkafkalibrary
robooo Oct 8, 2020
a9b6178
Added RobotMK to the list of integration tools
simonmeggle Oct 30, 2020
962207b
Merge pull request #18 from MandyYdnam/master
Nov 16, 2020
35cbefe
Merge pull request #19 from bhirsz/patch-1
Nov 16, 2020
27b3476
Merge pull request #20 from robooo/master
Nov 16, 2020
2f4d6e0
Merge pull request #21 from simonmeggle/master
Nov 16, 2020
83ce48e
Updated ImapLibrary link
Jan 11, 2021
487ab3a
Merge pull request #22 from ankit2web/master
Jan 11, 2021
df56d7e
add xeus-robot
Feb 22, 2021
a063a1a
Add molecule-robotframework Ansible Molecule plugin
meffie Apr 15, 2021
4e9a404
Merge pull request #23 from meffie/master
Apr 16, 2021
8e719ad
Add OpenAFS test library
meffie Apr 15, 2021
fc6d81c
Merge pull request #24 from meffie/master
Apr 16, 2021
4a8d589
Update README.md
Jan 10, 2022
7c4b473
Merge pull request #27 from skhalymon/patch-1
Jan 10, 2022
d81c7fd
add robotframework-browser
Feb 26, 2022
b2bb42b
add company users in robotics
Jun 17, 2022
5d3a349
add deprecation notice
Jul 28, 2023
80d565a
Minor changes around content referencing repo account
emanlove Mar 8, 2024
1039068
Switched travis.ci with Github Actions
emanlove Mar 8, 2024
137c5ab
Updated a couple more links to marketsquare
emanlove Mar 8, 2024
24348c6
Add the Robot Framework Solidity Testing Toolkit to Tools (#31)
jg8481 Aug 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Awesome-(Ro)Bot

on:
pull_request:
branches: [ '*' ]
push:
branches: [ '*' ]

jobs:
test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Install gem
run: gem install awesome_bot
- name: Check links
run: |
awesome_bot README.md --allow-dupe
Loading