Skip to content

Commit 6db3a40

Browse files
committed
Renamed to main branch.
1 parent 9a1985e commit 6db3a40

File tree

7 files changed

+32
-32
lines changed

7 files changed

+32
-32
lines changed

Diff for: .circleci/config.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
name: Run fossa
120120
command: |
121121
cd ./src/
122-
curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | bash
122+
curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/main/install.sh | bash
123123
fossa init
124124
fossa analyze
125125
@@ -217,26 +217,26 @@ workflows:
217217
filters:
218218
branches:
219219
only:
220-
- master
220+
- main
221221
- build_test_java:
222222
filters:
223223
branches:
224224
only:
225-
- master
225+
- main
226226
requires:
227227
- download_from_code_climate
228228
- build_test_python:
229229
filters:
230230
branches:
231231
only:
232-
- master
232+
- main
233233
requires:
234234
- download_from_code_climate
235235
- upload_to_code_climate:
236236
filters:
237237
branches:
238238
only:
239-
- master
239+
- main
240240
requires:
241241
- build_test_java
242242
- build_test_python

Diff for: .github/workflows/codeql-analysis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: 'CodeQL'
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
pull_request:
77
# The branches below must be a subset of the branches above
8-
branches: [master]
8+
branches: [main]
99
schedule:
1010
- cron: '0 15 * * 3'
1111

Diff for: .github/workflows/linter.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ name: Lint Code Base
1616
#############################
1717
on:
1818
push:
19-
# branches-ignore: [master]
20-
# Remove the line above to run when pushing to master
19+
# branches-ignore: [main]
20+
# Remove the line above to run when pushing to main
2121
pull_request:
22-
branches: [master]
22+
branches: [main]
2323

2424
###############
2525
# Set the Job #
@@ -48,5 +48,5 @@ jobs:
4848
uses: github/super-linter@v3
4949
env:
5050
VALIDATE_ALL_CODEBASE: false
51-
DEFAULT_BRANCH: master
51+
DEFAULT_BRANCH: main
5252
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Diff for: .travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838
# commit_message: Travis CI Updates [ci skip]
3939
# local_dir: website
4040
# on:
41-
# branch: master
41+
# branch: main
4242
# target_branch: gh-pages
4343

4444
branches:
4545
only:
46-
- master
46+
- main

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Learning Computer Science
22

3-
![logo](https://github.com/computer-science-engineering/learning-computer-science/blob/master/resources/images/logo/Logo%20LCS%20color/logo%20LCS%20color%20low%20res.png?raw=true)
3+
![logo](https://github.com/computer-science-engineering/learning-computer-science/blob/main/resources/images/logo/Logo%20LCS%20color/logo%20LCS%20color%20low%20res.png?raw=true)
44

55
1. [Overview](#overview)
66
2. [Project](#project)
@@ -16,10 +16,10 @@
1616

1717
Learning data structures, algorithms, machine learning and various computer science constructs by programming practice from resources around the web.
1818

19-
[![Discord](https://img.shields.io/discord/611637065913729036)](https://discord.gg/bv5FU8t) [![CircleCI](https://circleci.com/gh/computer-science-engineering/learning-computer-science/tree/master.svg?style=svg)](https://circleci.com/gh/computer-science-engineering/learning-computer-science/tree/master)
19+
[![Discord](https://img.shields.io/discord/611637065913729036)](https://discord.gg/bv5FU8t) [![CircleCI](https://circleci.com/gh/computer-science-engineering/learning-computer-science/tree/main.svg?style=svg)](https://circleci.com/gh/computer-science-engineering/learning-computer-science/tree/main)
2020
[![Actions Status](https://github.com/computer-science-engineering/learning-computer-science/workflows/build-test/badge.svg)](https://github.com/computer-science-engineering/learning-computer-science/actions)
2121
[![GitHub Super-Linter](https://github.com/computer-science-engineering/learning-computer-science/workflows/Lint%20Code%20Base/badge.svg)](https://github.com/computer-science-engineering/learning-computer-science/actions)
22-
[![codecov](https://codecov.io/gh/computer-science-engineering/learning-computer-science/branch/master/graph/badge.svg)](https://codecov.io/gh/computer-science-engineering/learning-computer-science)
22+
[![codecov](https://codecov.io/gh/computer-science-engineering/learning-computer-science/branch/main/graph/badge.svg)](https://codecov.io/gh/computer-science-engineering/learning-computer-science)
2323

2424
[More project metadata badges [here](./documentation/project/metadata.md). More CI/CD badges [here](./documentation/development/ci-cd.md#current-status).]
2525

@@ -65,4 +65,4 @@ Learning data structures, algorithms, machine learning and various computer scie
6565

6666
## License
6767

68-
[MIT](https://github.com/computer-science-engineering/learning-computer-science/blob/master/LICENSE)
68+
[MIT](https://github.com/computer-science-engineering/learning-computer-science/blob/main/LICENSE)

Diff for: documentation/development/ci-cd.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@
55

66
## Current Status
77

8-
| Platform | Provider | Operations | Status |
9-
| --------------------- | ----------- | --------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
10-
| Windows, Linux, MacOS | GitHub | Build, Test, Deploy to gh-pages | [![Actions Status](https://github.com/computer-science-engineering/learning-computer-science/workflows/build-test/badge.svg)](https://github.com/computer-science-engineering/learning-computer-science/actions) |
11-
| Linux | GitHub | Linter | [![GitHub Super-Linter](https://github.com/computer-science-engineering/learning-computer-science/workflows/Lint%20Code%20Base/badge.svg)](https://github.com/computer-science-engineering/learning-computer-science/actions) |
12-
| Windows, Linux | AppVeyor | Build, Test | [![Build status](https://ci.appveyor.com/api/projects/status/uvjam91rdx7f2kdo?svg=true)](https://ci.appveyor.com/project/manastalukdar/learning-computer-science) |
13-
| Linux | Travis CI | Build, Test, Deploy to gh-pages | [![Build Status](https://travis-ci.org/computer-science-engineering/learning-computer-science.svg?branch=master)](https://travis-ci.com/computer-science-engineering/learning-computer-science) |
14-
| Linux | Circle CI | Build, Test | [![CircleCI](https://circleci.com/gh/computer-science-engineering/learning-computer-science/tree/master.svg?style=svg)](https://circleci.com/gh/computer-science-engineering/learning-computer-science/tree/master) |
15-
| N/A | CodeClimate | Check for code maintainability | [![Maintainability](https://api.codeclimate.com/v1/badges/2e2bfc548d29f566051a/maintainability)](https://codeclimate.com/github/computer-science-engineering/learning-computer-science/maintainability) |
16-
| N/A | CodeClimate | Check for test coverage using Circle CI | [![Test Coverage](https://api.codeclimate.com/v1/badges/2e2bfc548d29f566051a/test_coverage)](https://codeclimate.com/github/computer-science-engineering/learning-computer-science/test_coverage) |
17-
| N/A | Codacy | Code analysis/quality check | [![Codacy Badge](https://app.codacy.com/project/badge/Grade/b10299a64e704411ba321229fcad3e04)](https://www.codacy.com/gh/computer-science-engineering/learning-computer-science/dashboard?utm_source=github.com&utm_medium=referral&utm_content=computer-science-engineering/learning-computer-science&utm_campaign=Badge_Grade) |
18-
| N/A | CodeBeat | Static code analysis | [![codebeat badge](https://codebeat.co/badges/29ea0010-206a-433c-813d-55eba8e9edaf)](https://codebeat.co/projects/github-com-computer-science-engineering-learning-computer-science-master) |
19-
| N/A | CodeFactor | Static code analysis | [![CodeFactor](https://www.codefactor.io/repository/github/computer-science-engineering/learning-computer-science/badge)](https://www.codefactor.io/repository/github/computer-science-engineering/learning-computer-science) |
20-
| N/A | Codecov | Code coverage using Circle CI | [![codecov](https://codecov.io/gh/computer-science-engineering/learning-computer-science/branch/master/graph/badge.svg?token=IN47ioiCTU)](undefined) |
21-
| N/A | Coveralls | Code coverage using Circle CI | [![Coverage Status](https://coveralls.io/repos/github/computer-science-engineering/learning-computer-science/badge.svg?branch=master)](https://coveralls.io/github/computer-science-engineering/learning-computer-science?branch=master) [[Known issue](https://github.com/computer-science-engineering/learning-computer-science/issues/35)] |
8+
| Platform | Provider | Operations | Status |
9+
| --------------------- | ----------- | --------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
10+
| Windows, Linux, MacOS | GitHub | Build, Test, Deploy to gh-pages | [![Actions Status](https://github.com/computer-science-engineering/learning-computer-science/workflows/build-test/badge.svg)](https://github.com/computer-science-engineering/learning-computer-science/actions) |
11+
| Linux | GitHub | Linter | [![GitHub Super-Linter](https://github.com/computer-science-engineering/learning-computer-science/workflows/Lint%20Code%20Base/badge.svg)](https://github.com/computer-science-engineering/learning-computer-science/actions) |
12+
| Windows, Linux | AppVeyor | Build, Test | [![Build status](https://ci.appveyor.com/api/projects/status/uvjam91rdx7f2kdo?svg=true)](https://ci.appveyor.com/project/manastalukdar/learning-computer-science) |
13+
| Linux | Travis CI | Build, Test, Deploy to gh-pages | [![Build Status](https://travis-ci.org/computer-science-engineering/learning-computer-science.svg?branch=main)](https://travis-ci.com/computer-science-engineering/learning-computer-science) |
14+
| Linux | Circle CI | Build, Test | [![CircleCI](https://circleci.com/gh/computer-science-engineering/learning-computer-science/tree/main.svg?style=svg)](https://circleci.com/gh/computer-science-engineering/learning-computer-science/tree/main) |
15+
| N/A | CodeClimate | Check for code maintainability | [![Maintainability](https://api.codeclimate.com/v1/badges/2e2bfc548d29f566051a/maintainability)](https://codeclimate.com/github/computer-science-engineering/learning-computer-science/maintainability) |
16+
| N/A | CodeClimate | Check for test coverage using Circle CI | [![Test Coverage](https://api.codeclimate.com/v1/badges/2e2bfc548d29f566051a/test_coverage)](https://codeclimate.com/github/computer-science-engineering/learning-computer-science/test_coverage) |
17+
| N/A | Codacy | Code analysis/quality check | [![Codacy Badge](https://app.codacy.com/project/badge/Grade/b10299a64e704411ba321229fcad3e04)](https://www.codacy.com/gh/computer-science-engineering/learning-computer-science/dashboard?utm_source=github.com&utm_medium=referral&utm_content=computer-science-engineering/learning-computer-science&utm_campaign=Badge_Grade) |
18+
| N/A | CodeBeat | Static code analysis | [![codebeat badge](https://codebeat.co/badges/29ea0010-206a-433c-813d-55eba8e9edaf)](https://codebeat.co/projects/github-com-computer-science-engineering-learning-computer-science-main) |
19+
| N/A | CodeFactor | Static code analysis | [![CodeFactor](https://www.codefactor.io/repository/github/computer-science-engineering/learning-computer-science/badge)](https://www.codefactor.io/repository/github/computer-science-engineering/learning-computer-science) |
20+
| N/A | Codecov | Code coverage using Circle CI | [![codecov](https://codecov.io/gh/computer-science-engineering/learning-computer-science/branch/main/graph/badge.svg?token=IN47ioiCTU)](undefined) |
21+
| N/A | Coveralls | Code coverage using Circle CI | [![Coverage Status](https://coveralls.io/repos/github/computer-science-engineering/learning-computer-science/badge.svg?branch=main)](https://coveralls.io/github/computer-science-engineering/learning-computer-science?branch=main) [[Known issue](https://github.com/computer-science-engineering/learning-computer-science/issues/35)] |
2222

2323
## Methodology

0 commit comments

Comments
 (0)