Skip to content

Add Fluent function to Tera, link to data context #87

Add Fluent function to Tera, link to data context

Add Fluent function to Tera, link to data context #87

Workflow file for this run

# This workflow runs on every push and checks whether everything looks good
name: Quick check
on:
push:
tags-ignore:
- v*
branches:
- "*"
pull_request:
types: [opened, synchronize, reopened]
jobs:
quick_check-format:
runs-on: ubuntu-latest
steps:
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt
- uses: actions/checkout@v2
- name: Cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
quick_check-clippy:
runs-on: ubuntu-latest
steps:
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy
- uses: actions/checkout@v2
- name: Cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-features -- -D warnings
quick_check-tests:
strategy:
fast-fail: false

Check failure on line 56 in .github/workflows/quick-check.yml

View workflow run for this annotation

GitHub Actions / Quick check

Invalid workflow file

The workflow is not valid. .github/workflows/quick-check.yml (Line: 56, Col: 7): Unexpected value 'fast-fail'
matrix:
feature-flags:
- ''
- '--all-features'
runs-on: ubuntu-latest
steps:
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions/checkout@v2
- name: Cargo test
uses: actions-rs/cargo@v1
with:
command: test {{ matrix-feature-flags }}
- name: Cargo check
uses: actions-rs/cargo@v1
with:
command: check {{ matrix.feature-flags }}