Skip to content

Commit

Permalink
Merge branch 'main' of github.com:MIT-Emerging-Talent/ET6-practice-co…
Browse files Browse the repository at this point in the history
…de-review into IsPrime
  • Loading branch information
Moealfadil committed Dec 28, 2024
2 parents 2899743 + 81a1ce6 commit bd7b65a
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/help_wanted.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
name: help wanted
about: >
about: >
A template issue for when you're blocked on certain lines of code.
This template has many sections to get you thinking about your problem, you don't need to fill all of them.
This template has many sections to get you thinking about your problem,
you don't need to fill all of them.
labels: "help wanted"

---

<!--
Expand Down
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/meeting_agenda.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
---
name: meeting agenda
about: A template issue for planning meetings
title: "Agenda: __"
title: "Agenda: \_\_"
labels: agenda
---


<!-- Make your issue easy to find:
- milestone: any milestones you will be addressing
Expand Down
5 changes: 2 additions & 3 deletions .github/ISSUE_TEMPLATE/new_challenge.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
---
name: new challenge
about: >
A template issue for describing a new challenge on the project board.
about: >
A template issue for describing a new challenge on the project board.
Place this issue in the TODO column of your group's project board.
title: ''
---

<!--
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: question
about: >
about: >
A template issue for topics you'd like to discuss or learn more about.
specific topics, general knowledge, it does not even need to be about code.
There are no bad questions!
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/ci-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: python version
run: python --version
shell: bash

- name: Check for test files
id: check_tests
run: |
if find . -type f -name "test_*.py" | grep -q .; then
echo "has_tests=true" >> $GITHUB_OUTPUT
else
echo "has_tests=false" >> $GITHUB_OUTPUT
fi
shell: bash

- name: Python - Run Tests
if: steps.check_tests.outputs.has_tests == 'true'
run: python -m unittest
shell: bash
10 changes: 4 additions & 6 deletions collaboration/guide/0_repository_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,16 @@ take the time to do this correctly at the beginning.

## Setup and Share a Repository

As a team you will choose the name for your team and select
someone from your team to be the repo owner. This person will fork this
repository and configure it for collaboration:
As a team you will choose the name for your team and select someone from your
team to be the repo owner. This person will fork this repository and configure
it for collaboration:

- Public face of your repository
- Change your
[repository description](https://stackoverflow.com/questions/7757751/how-do-you-change-a-repository-description-on-github)
- Add or remove topics from your repository
- Update your main README with your group name and an initial overview of your

project. (You can change this as much as you want.)

project. (You can change this as much as you want.)
- Under settings in your repository select:
- _Issues_
- _Projects_
Expand Down

0 comments on commit bd7b65a

Please sign in to comment.