Skip to content
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

Deploy #1917

Merged
merged 35 commits into from
Jan 25, 2024
Merged

Deploy #1917

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
c6b56f9
Identify Linux riscv64 as unix
senekor Oct 31, 2023
5738294
Merge pull request #1887 from senekor/linux-riscv64-detection
Manishearth Oct 31, 2023
ca2a162
Update rocket to 0.5
senekor Nov 18, 2023
be94e5d
Fix clippy config
senekor Nov 18, 2023
5e03403
Merge pull request #1892 from senekor/rocket-v0.5
Manishearth Nov 18, 2023
427baf4
Merge pull request #1893 from senekor/clippy-config
Manishearth Nov 18, 2023
ec23106
Update tools.ftl
66Leo66 Dec 14, 2023
04f3473
Also update url to rust-analyzer
66Leo66 Dec 14, 2023
439e4cc
Merge pull request #1899 from 66Leo66/patch-1
Manishearth Dec 14, 2023
ef99d3e
Render custom roles
dtolnay Jan 8, 2024
b352151
Merge pull request #1904 from dtolnay-contrib/roles
Manishearth Jan 8, 2024
0ed652d
Resolve Rust 1.75's new get_first clippy lint
dtolnay Jan 9, 2024
c4222ce
Merge pull request #1906 from dtolnay-contrib/clippy
Manishearth Jan 9, 2024
b86202f
Fix warnings printed by Rocket regarding String as parameter type
dtolnay Jan 9, 2024
e89f301
Merge pull request #1907 from dtolnay-contrib/rocketstring
Manishearth Jan 9, 2024
b37a379
Regenerate en-US teams.ftl from team repo
dtolnay Jan 9, 2024
6f8bf67
Use Rust 1.75's async fn in trait instead of #[async_trait]
dtolnay Jan 9, 2024
7e76e17
Merge pull request #1908 from dtolnay-contrib/en-us
Manishearth Jan 9, 2024
3db12c8
Merge pull request #1909 from dtolnay-contrib/asynctrait
Manishearth Jan 9, 2024
5f07f7e
Install current stable Rust in CI
dtolnay Jan 9, 2024
80bdf12
Clean up component installation
dtolnay Jan 9, 2024
4797b87
Merge pull request #1910 from dtolnay-contrib/stable
Manishearth Jan 9, 2024
13ee09f
Update Eclipse editor landing page
dtolnay Jan 14, 2024
99a20b4
Delete Atom editor
dtolnay Jan 14, 2024
0f989ad
Handle launching-pad subteams.
ehuss Jan 14, 2024
89eee6e
Merge pull request #1913 from dtolnay-contrib/atom
Manishearth Jan 14, 2024
062d85e
Merge pull request #1914 from ehuss/launching-pad
Manishearth Jan 14, 2024
19c4b4f
Merge pull request #1912 from dtolnay-contrib/eclipse
Manishearth Jan 14, 2024
6c8e4ec
Add fallback for role descriptions
dtolnay Jan 9, 2024
d6cb9d0
Delete Geany from editor list
dtolnay Jan 14, 2024
73e8030
Add Visual Studio
dtolnay Jan 14, 2024
efe3019
Rename RustRover ftl key from tools-editor-idea to tools-editor-rover
dtolnay Jan 14, 2024
44d1ef3
Merge pull request #1915 from dtolnay-contrib/visual-studio
Manishearth Jan 15, 2024
1b2f39e
Merge pull request #1916 from dtolnay-contrib/rover
Manishearth Jan 15, 2024
0b933a8
Merge pull request #1905 from dtolnay-contrib/fallback
Manishearth Jan 15, 2024
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
10 changes: 6 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,20 @@ jobs:
steps:
- uses: actions/checkout@v2

- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt

- name: Formatting
run: |
# Install extra rustup components
rustup component add rustfmt
cargo fmt --all -- --check
run: cargo fmt --all -- --check

- name: Test
run: |
set -euo pipefail
IFS=$'\n\t'
# Check if the code is good
cargo build --all --locked
cargo clippy -- --deny warnings
cargo test --all --locked

- name: Build the Docker image
Expand Down
Loading
Loading