Replace Travis CI mentions with GitHub actions (#5751) · UnixJunkie/all-algorithms-python@37bc6bd · GitHub
Skip to content

Commit 37bc6bd

Browse files
Replace Travis CI mentions with GitHub actions (TheAlgorithms#5751)
1 parent 60ad329 commit 37bc6bd

3 files changed

Lines changed: 6 additions & 7 deletions

File tree

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions

project_euler/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Problems are taken from https://projecteuler.net/, the Project Euler. [Problems
55
Project Euler is a series of challenging mathematical/computer programming problems that require more than just mathematical
66
insights to solve. Project Euler is ideal for mathematicians who are learning to code.
77

8-
The solutions will be checked by our [automated testing on Travis CI](https://travis-ci.com/github/TheAlgorithms/Python/pull_requests) with the help of [this script](https://github.com/TheAlgorithms/Python/blob/master/scripts/validate_solutions.py). The efficiency of your code is also checked. You can view the top 10 slowest solutions on Travis CI logs (under `slowest 10 durations`) and open a pull request to improve those solutions.
8+
The solutions will be checked by our [automated testing on GitHub Actions](https://github.com/TheAlgorithms/Python/actions) with the help of [this script](https://github.com/TheAlgorithms/Python/blob/master/scripts/validate_solutions.py). The efficiency of your code is also checked. You can view the top 10 slowest solutions on GitHub Actions logs (under `slowest 10 durations`) and open a pull request to improve those solutions.
99

1010

1111
## Solution Guidelines
@@ -28,7 +28,7 @@ Welcome to [TheAlgorithms/Python](https://github.com/TheAlgorithms/Python)! Befo
2828
* When the `solution` function is called without any arguments like so: `solution()`, it should return the answer to the problem.
2929

3030
* Every function, which includes all the helper functions, if any, and the main solution function, should have `doctest` in the function docstring along with a brief statement mentioning what the function is about.
31-
* There should not be a `doctest` for testing the answer as that is done by our Travis CI build using this [script](https://github.com/TheAlgorithms/Python/blob/master/scripts/validate_solutions.py). Keeping in mind the above example of [Problem 1](https://projecteuler.net/problem=1):
31+
* There should not be a `doctest` for testing the answer as that is done by our GitHub Actions build using this [script](https://github.com/TheAlgorithms/Python/blob/master/scripts/validate_solutions.py). Keeping in mind the above example of [Problem 1](https://projecteuler.net/problem=1):
3232

3333
```python
3434
def solution(limit: int = 1000):

project_euler/problem_012/sol2.py

Lines changed: 2 additions & 3 deletions

0 commit comments

Comments
 (0)