Compare commits

...

5 Commits

Author SHA1 Message Date
Jonas Bushart
d39b183d8d Enable backtraces for test failures 2022-05-02 20:41:08 +00:00
Jonas Bushart
4018312e96 Enable colored cargo output 2022-05-02 20:32:16 +00:00
Jonas Bushart
9015641f5c Update changelog 2022-04-20 20:27:13 +00:00
Jonas Bushart
014f31d759 Shrinkt action description to make it marketplace compliant 2022-04-20 20:25:35 +00:00
Jonas Bushart
85cc8bd3df Add changelog 2022-04-20 20:15:26 +00:00
2 changed files with 22 additions and 3 deletions

18
CHANGELOG.md Normal file
View File

@@ -0,0 +1,18 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [1.0.1] - 2022-04-20
### Added
* Release action on marketplace
## [1.0.0] - 2022-04-20
Initial Version

View File

@@ -1,8 +1,7 @@
name: Setup Rust Toolchain for GitHub CI
description: |
Setup specific Rust versions and integrate nicely into the ecosystem.
The action enabled caching of Rust tools and build artifacts and sets environment variables for faster and more efficient caching.
It also sets up problem matchers showing compilation and formatting issues.
Setup specific Rust versions with caching pre-configured.
It provides problem matchers for cargo and rustfmt issues.
branding:
icon: "play"
@@ -73,5 +72,7 @@ runs:
run: |
echo "CARGO_INCREMENTAL=0" >> $GITHUB_ENV
echo "CARGO_PROFILE_DEV_DEBUG=0" >> $GITHUB_ENV
echo "CARGO_TERM_COLOR=always" >> $GITHUB_ENV
echo "RUST_BACKTRACE=short" >> $GITHUB_ENV
echo "RUSTFLAGS=-D warnings" >> $GITHUB_ENV
shell: bash