-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: Pull Request resolved: #34 Test Plan: https://github.com/facebookincubator/reindeer/actions/runs/7504352196/job/20431177281?pr=34 {F1285882094} Differential Revision: D52732918 Pulled By: shayne-fletcher
- Loading branch information
1 parent
16265a7
commit 96eacc9
Showing
4 changed files
with
34 additions
and
20 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,9 @@ | ||
name: Cargo build and test | ||
description: Use Cargo to build and test Reindeer | ||
runs: | ||
using: composite | ||
steps: | ||
- run: cargo build --locked | ||
shell: bash | ||
- run: cargo test | ||
shell: bash |
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,16 @@ | ||
name: Setup environment | ||
description: Setup an environment for building and testing Reindeer | ||
runs: | ||
using: composite | ||
steps: | ||
- uses: SebRollen/toml-action@v1.0.2 | ||
id: read_rust_toolchain | ||
with: | ||
file: rust-toolchain | ||
field: toolchain.channel | ||
- uses: dtolnay/rust-toolchain@v1 | ||
with: | ||
toolchain: ${{ steps.read_rust_toolchain.outputs.value }} | ||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
prefix-key: reindeer-upload |
This file was deleted.
Oops, something went wrong.
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