Skip to content

Commit

Permalink
fix/add badges
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Jun 26, 2024
1 parent b0a4025 commit 909d577
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
# LivInTheLookingGlass's Project Euler solutions

Build Status:
- C: [![C Build Status](actions/workflows/c.yml/badge.svg)](actions/workflows/c.yml)
- C#: [![C# Build Status](actions/workflows/csharp.yml/badge.svg)](actions/workflows/csharp.yml)
- JavaScript: [![JavaScript Build Status](actions/workflows/javascript.yml/badge.svg)](actions/workflows/javascript.yml)
- Python: [![Python Build Status](actions/workflows/python.yml/badge.svg)](actions/workflows/python.yml)
- C: [![C Check](https://github.com/LivInTheLookingGlass/Euler/actions/workflows/c.yml/badge.svg)](https://github.com/LivInTheLookingGlass/Euler/actions/workflows/c.yml)
- C#: [![C# Check](https://github.com/LivInTheLookingGlass/Euler/actions/workflows/csharp.yml/badge.svg)](https://github.com/LivInTheLookingGlass/Euler/actions/workflows/csharp.yml)
- JavaScript: [![JavaScript Check](https://github.com/LivInTheLookingGlass/Euler/actions/workflows/javascript.yml/badge.svg)](https://github.com/LivInTheLookingGlass/Euler/actions/workflows/javascript.yml)
- Python: [![Python Check](https://github.com/LivInTheLookingGlass/Euler/actions/workflows/python.yml/badge.svg)](https://github.com/LivInTheLookingGlass/Euler/actions/workflows/python.yml)

This is the repository I keep for prospective employers to look at project Euler code that I have written.

This is useful because it has defined problems and answers such that you can compare answers with other people.

All solutions are tested against multiple operating systems and language/compiler versions. For more information, see `.github/workflows/on_push.yml`
All solutions are tested against multiple operating systems and language/compiler versions. For more information, see `.github/workflows/`

## This is NOT meant to help others on Project Euler problems

Expand Down
2 changes: 2 additions & 0 deletions c/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# C Section

Build Status: [![C Check](https://github.com/LivInTheLookingGlass/Euler/actions/workflows/c.yml/badge.svg)](https://github.com/LivInTheLookingGlass/Euler/actions/workflows/c.yml)

All problems are solved in C11, though most if not all of it is C99-compatible. It is tested on clang, gcc, and cl (the Visual Studios compiler).

## Organization
Expand Down
2 changes: 2 additions & 0 deletions csharp/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# C# Section

Build Status: [![C# Check](https://github.com/LivInTheLookingGlass/Euler/actions/workflows/csharp.yml/badge.svg)](https://github.com/LivInTheLookingGlass/Euler/actions/workflows/csharp.yml)

All problems are solved in .NET 6, though an effort is made to support other versions.

## Organization
Expand Down
6 changes: 4 additions & 2 deletions javascript/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Javascript Section
# JavaScript Section

Build Status: [![JavaScript Check](https://github.com/LivInTheLookingGlass/Euler/actions/workflows/javascript.yml/badge.svg)](https://github.com/LivInTheLookingGlass/Euler/actions/workflows/javascript.yml)

All problems are solved in ES6+ Javascript

Expand Down Expand Up @@ -30,4 +32,4 @@ A test fails if it gets the wrong answer or if it takes more than 1 minute.

## Dependencies

I try to keep the dependencies of this project as small as possible, except for test plugins. At the moment there are no non-test dependencies for this section.
I try to keep the dependencies of this project as small as possible, except for test plugins. At the moment there are no non-test dependencies for this section.
2 changes: 2 additions & 0 deletions python/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Python Section

Build Status: [![Python Check](https://github.com/LivInTheLookingGlass/Euler/actions/workflows/python.yml/badge.svg)](https://github.com/LivInTheLookingGlass/Euler/actions/workflows/python.yml)

All problems are solved in type-hinted python3

## Organization
Expand Down

0 comments on commit 909d577

Please sign in to comment.