Skip to content

Deploy Master Changes #998

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

Merged
merged 31 commits into from
Jan 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
b307104
Fix more leftover quotation marks
Manishearth Jan 6, 2020
fab31a4
Merge pull request #978 from Manishearth/leftover-quotes
pietroalbini Jan 7, 2020
0a5bebc
Add playground to nav
sergeysova Jan 16, 2020
5b237b6
Add playground to en_US
sergeysova Jan 16, 2020
baf71c2
Add playground to ru
sergeysova Jan 16, 2020
c554543
Add info on how to test the translations locally
apiraino Jan 18, 2020
8932b82
Merge pull request #986 from apiraino/patch-1
Manishearth Jan 20, 2020
a9f7d03
Merge pull request #985 from sergeysova/patch-1
Manishearth Jan 20, 2020
6a1d707
Pontoon: Update Chinese (zh-CN) localization of Rust Website
ZhangHanDong Jan 24, 2020
6eec383
Pontoon: Update Italian (it) localization of Rust Website
Jan 24, 2020
9a21af0
Pontoon: Update Japanese (ja) localization of Rust Website
JohnTitor Jan 24, 2020
cc40467
Fixed links to not multi-redirect
Zexbe Jan 25, 2020
34fd3dc
Merge pull request #988 from Zexbe/fix-link-1
Manishearth Jan 26, 2020
f4985a8
Minor bugfix on embedded testimonials (#970)
ryanhalliday Jan 27, 2020
d74de03
alphabetisation (#952)
betseg Jan 27, 2020
fea5cb9
Add .gitattributes
XAMPPRocky Jan 26, 2020
310255d
Merge pull request #989 from XAMPPRocky/master
Manishearth Jan 27, 2020
c1b17e3
Switch from Travis to GitHub Actions
XAMPPRocky Jan 27, 2020
3f01de5
Fix warnings & clippy lints. Deny warnings on test
XAMPPRocky Jan 27, 2020
7bd9840
add sentence about rustup update on getting started (#964)
lislis Jan 27, 2020
988b510
Fix typo (#996)
XAMPPRocky Jan 28, 2020
ef79ba8
Format Scss (#995)
XAMPPRocky Jan 28, 2020
69c0b8a
Merge pull request #991 from XAMPPRocky/gh-actions
Manishearth Jan 28, 2020
fdebf34
Merge pull request #992 from XAMPPRocky/rm-warnings
Manishearth Jan 28, 2020
80a63ea
Update dependencies and de-personalise author field
XAMPPRocky Jan 27, 2020
3fd886a
Merge pull request #990 from XAMPPRocky/update-deps
Manishearth Jan 28, 2020
d95a32f
Add syntax highlighting
XAMPPRocky Jan 27, 2020
a17a654
Use active descriptions for domain buttons
XAMPPRocky Jan 28, 2020
be3195e
Update Status Badge
XAMPPRocky Jan 28, 2020
d13ba06
Merge pull request #997 from XAMPPRocky/active-btns
Manishearth Jan 28, 2020
13d52ef
Merge pull request #994 from XAMPPRocky/highlightjs
Manishearth Jan 29, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
locales/* linguist-documentation
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI
on: [push, pull_request]
env:
RUST_BACKTRACE: 1
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Formatting
run: |
# Install extra rustup components
rustup component add rustfmt
cargo fmt --all -- --check
- name: Correct Nightly Version
# Ensure everything is run and tested with the same nightly version
run: ci/check-nightly-version.sh
- name: Test
run: |
set -euo pipefail
IFS=$'\n\t'
# Check if the code is good
cargo build --all --locked
cargo test --all --locked
4 changes: 0 additions & 4 deletions .travis.yml

This file was deleted.

Loading