Skip to content
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.

test: add test for using CONFIG_ENV_PREFIX #14

test: add test for using CONFIG_ENV_PREFIX

test: add test for using CONFIG_ENV_PREFIX #14

Workflow file for this run

name: ci
on:
push:
branches:
- main
tags-ignore:
- v*
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
# Nightly needed for `cargo +nightly fmt` below
- name: Install Rust toolchain
run: |
rustup update
rustup toolchain install nightly --profile minimal
rustup component add rustfmt --toolchain nightly
# rustup component add clippy --toolchain nightly
- name: Install just
uses: taiki-e/install-action@v2
with:
tool: just
- name: Set up Rust cache
uses: Swatinem/rust-cache@v2
- name: Check code format
run: just fmt_check
- name: Run linter
run: just lint
- name: Run tests
run: just test