-
Notifications
You must be signed in to change notification settings - Fork 4
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
Question title descriptive #18
Open
chithrarajan
wants to merge
78
commits into
saasbook:main
Choose a base branch
from
cs169:question_title_descriptive
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 51 commits
Commits
Show all changes
78 commits
Select commit
Hold shift + click to select a range
74625ec
Changed the credentials for github, new dev app.
KCsama 5167d80
Merge pull request #1 from cs169/credential
KCsama 8fdbba8
Updated the gemfile to contain faraday
KCsama 30b4c98
updated gem and bundle
KCsama 941800b
provoder state and code climate
KCsama db92209
Update README.md
KCsama 5c2f430
Update README.md
KCsama 6b21a22
update readme
KCsama b14f60b
modified credential
KCsama 8201ff1
added badge for ci
KCsama 441d059
Update README.md
KCsama f1bba60
update on ci.yml
a544266477 ce369ab
change back.
a544266477 6f6237b
try migrate
KCsama c519497
try migrate again
KCsama aa6960a
change it back
KCsama 357f5c2
omniauth fixed
55a051e
omniauth
KCsama 85c4a6e
change
a544266477 3ae7742
Update info.yml
KCsama e338fe0
Update README.md
KCsama 4bcb8f1
Update ci.yml
KCsama 3a54d05
Update README.md
chithrarajan 2540984
Merge branch 'credential' of https://github.com/cs169/PrairieLearn-EE…
a544266477 5b817b4
Merge branch 'credential' of https://github.com/cs169/PrairieLearn-EE…
a544266477 55968ad
Tried fix ci
a544266477 db08419
try fix ci
a544266477 2ba100a
try fix ci
a544266477 97f4b5f
try ci
a544266477 40b24d6
implicitly using cc id
a544266477 385fc3c
try implicitly cc id
a544266477 49cf9a7
use guobin's ccid
a544266477 b46d235
Merge branch 'main' of https://github.com/cs169/PrairieLearn-EECS int…
a544266477 b448b7b
Merge pull request #4 from cs169/credential
a544266477 e6ae829
search bar
fp456 c39bfb6
Update info.yml
KCsama 6b128f4
Update README.md
KCsama 35d7645
Update info.yml
KCsama d857499
try bluejay
a544266477 bfee737
change ci
a544266477 63b8a68
Update info.yml
a544266477 6b1acd9
Update info.yml
a544266477 eece918
Update info.yml
a544266477 ca80f1c
Update info.yml
a544266477 438d439
Update info.yml
a544266477 3e943bc
Update info.yml
a544266477 95ca903
Update info.yml
a544266477 432cdf4
Update README.md
KCsama 7d5bdfd
pulling descriptive question titles from info.json and trying to put …
d4b4e43
made question titles show up in sidebar
150a958
changed require statements in repo_controller to be at the top
d4f1cdf
Reset file notes to 0644
cycomachead 9fe0507
Merge pull request #13 from cs169/file-mode-change-test
chithrarajan 9e4408e
Update spec_helper.rb
chithrarajan 9138845
Update rails_helper.rb
chithrarajan e5071b2
Delete .travis.yml
chithrarajan e3d1d78
Update home.html.erb
chithrarajan 3c2df42
Update config/application.rb
chithrarajan 4aedc67
Update config/environment.rb
chithrarajan b8ae853
Update config/initializers/omniauth.rb
chithrarajan a260768
Delete master.key
chithrarajan c5382d0
Update ci.yml
chithrarajan d45c356
Update app/views/questions/index.html.erb
chithrarajan fdbdf0a
Update 20230325001538_add_descriptive_title_to_questions.rb
chithrarajan d9c6950
Revert "Update config/initializers/omniauth.rb"
7a785d3
Revert "Update config/environment.rb"
3804d1e
Revert "Update config/application.rb"
29c52cc
change descriptiveTitle to descriptivetitle
438ebb9
added master.key to gitignore
ae5d07e
running locally properly
a2ca94f
fixed master.key to config/master.key
6e7fdbc
trying on ci.yml
d954ea5
trying to do test.rb edits
b300d18
try to set env var
44b261d
corrfected name
659515d
try env block secret
a3ab60a
try adding the line to the tests stuff
8d18104
delete travis
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: build | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install Ruby 3.0.0 | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.0.0 | ||
|
||
- name: Set up Code Climate test-reporter | ||
run: | | ||
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter | ||
chmod +x ./cc-test-reporter | ||
./cc-test-reporter before-build | ||
|
||
- name: Install bundler | ||
run: | | ||
gem install bundler | ||
- name: Install Dependencies | ||
run: bundle install | ||
- name: Set up test database | ||
run: | | ||
bundle exec rake db:setup | ||
bundle exec rake db:create db:migrate | ||
- name: run Cucumber tests and capture coverage | ||
run: | | ||
bundle exec cucumber | ||
./cc-test-reporter format-coverage --output coverage/codeclimate.$SUITE.json --input-type simplecov | ||
- name: run RSpec tests | ||
run: | | ||
bundle exec rspec | ||
./cc-test-reporter format-coverage --output coverage/codeclimate.$SUITE.json --input-type simplecov | ||
- name: Publish code coverage | ||
run: | | ||
export GIT_BRANCH="${GITHUB_REF/refs\/heads\//}" | ||
./cc-test-reporter sum-coverage coverage/codeclimate.*.json | ||
./cc-test-reporter upload-coverage --id ${{ secrets.CC_TEST_REPORTER_ID }} | ||
./cc-test-reporter after-build --id ${{ secrets.CC_TEST_REPORTER_ID }} |
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file should be deleted now