-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ci: Split tests into tests and lint jobs * Rename lint.yml to lints.yml I see on Github that the job "lint" is still waiting while the Lints jobs have completed with success so I wonder if it's because the filename doesn't match the job name. * commit
- Loading branch information
1 parent
0032ab3
commit 1394d5b
Showing
3 changed files
with
50 additions
and
2 deletions.
There are no files selected for viewing
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,44 @@ | ||
on: | ||
push: | ||
branches: [main, 'release-v**'] | ||
pull_request: | ||
name: Lints | ||
jobs: | ||
lints: | ||
name: ${{ matrix.target }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
target: [fmt, taplo, clippy] | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
RUST_TOOLCHAIN: "nightly-2022-05-09" | ||
steps: | ||
- name: Free space on Ubuntu | ||
if: ${{ matrix.os }} == 'ubuntu-latest' | ||
run: | | ||
echo "Pre cleanup" | ||
df -h | ||
sudo rm -rf "/usr/local/share/boost" | ||
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | ||
echo "Post cleanup" | ||
df -h | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
- name: Install latest nightly | ||
uses: actions-rs/toolchain@88dc2356392166efad76775c878094f4e83ff746 | ||
with: | ||
toolchain: ${{ env.RUST_TOOLCHAIN }} | ||
default: true | ||
- name: Install taplo | ||
uses: actions-rs/[email protected] | ||
with: | ||
crate: taplo-cli | ||
version: 0.7.2 | ||
use-tool-cache: true | ||
- uses: Swatinem/rust-cache@cb2cf0cc7c5198d3364b9630e2c3d457f160790c | ||
- name: Run lints | ||
run: ./ci/script.sh | ||
env: | ||
TARGET: ${{ matrix.target }} | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ jobs: | |
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
target: [tests, integration, lint, clippy] | ||
target: [tests, integration] | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
RUST_TOOLCHAIN: "nightly-2022-05-09" | ||
|
@@ -30,6 +30,7 @@ jobs: | |
with: | ||
toolchain: ${{ env.RUST_TOOLCHAIN }} | ||
default: true | ||
# We use Taplo to format our Cargo.toml files. | ||
- name: Install taplo | ||
uses: actions-rs/[email protected] | ||
with: | ||
|
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