Go to file
2020-01-05 20:58:20 -05:00
.github Check targets in integration test 2019-09-18 17:40:33 +02:00
dist prefer ncc for packaging 2020-01-05 20:55:39 -05:00
src Use filesystem to check if operation has been run 2019-12-04 02:34:45 -05:00
.gitignore Initial commit 2019-08-15 17:16:59 +00:00
action.yml prefer ncc for packaging 2020-01-05 20:55:39 -05:00
jest.config.js Initial commit 2019-08-15 17:16:59 +00:00
LICENSE Update README and perform some cleanup 2019-08-16 01:43:28 +02:00
package-lock.json prefer ncc for packaging 2020-01-05 20:55:39 -05:00
package.json prefer ncc for packaging 2020-01-05 20:55:39 -05:00
README.md Capitalize "Inputs" title in README 2019-10-28 00:16:53 +01:00
tsconfig.json Initial commit 2019-08-15 17:16:59 +00:00

setup-rust-action

Integration status

Sets up a specific Rust toolchain for use in your GitHub Actions workflows.

Usage

Provide a rust-version with the desired toolchain version to install.

You can combine it with matrix to test different Rust toolchains in different platforms!

name: Test Rust project
on: [push]
jobs:
  test:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest, windows-latest, macOS-latest]
        rust: [stable, nightly]

    steps:
    - uses: hecrj/setup-rust-action@v1
      with:
        rust-version: ${{ matrix.rust }}
    - uses: actions/checkout@master
    - name: Run tests
      run: cargo test --verbose

Inputs

The following inputs can be provided with the jobs.<job_id>.steps.with yaml key.

Name Required Description Type Default
rust-version The toolchain name, such as stable, nightly, or 1.8.0 String stable
components The toolchain components to install String, comma-separated
targets The toolchain targets to add String, comma-separated

For more details, check out action.yml.

Contributing / Feedback

Contributions and feedback are welcome! Feel free to open any issues or pull requests.