mirror of
				https://github.com/actions-rs/toolchain.git
				synced 2025-10-31 16:53:53 +00:00 
			
		
		
		
	rustup toolchain Action
This GitHub Action installs Rust toolchain.
Optionally it can set installed toolchain as a default and as an override for current directory.
Example workflow
on: [push]
name: build
jobs:
  check:
    name: Rust project
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@master
      - name: Install nightly
        uses: actions-rs/toolchain@1
        with:
            toolchain: nightly
            override: true
Inputs
- toolchain: Toolchain name, see rustup page for details.
 Examples:- stable,- nightly,- nightly-2019-04-20
- default: Set installed toolchain as default (executes- rustup toolchain default {TOOLCHAIN})
- override: Set installed toolchain as an override for current directory
Note: toolchain input is required.
					Languages
				
				
								
								
									TypeScript
								
								92.5%
							
						
							
								
								
									Shell
								
								7.5%