Skip to content

Merge pull request #282 from joaquinbejar/feat/issue-247-exchange-option #711

Merge pull request #282 from joaquinbejar/feat/issue-247-exchange-option

Merge pull request #282 from joaquinbejar/feat/issue-247-exchange-option #711

Workflow file for this run

name: Lint
on:
push:
branches:
- '**'
pull_request:
branches:
- main
- 'release/**'
env:
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: rustfmt, clippy
- name: Cache Rust dependencies
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Install dependencies
run: |
if [ "${{ matrix.container }}" = "archlinux:latest" ]; then
pacman -Syu --noconfirm make fontconfig pkgconf
elif [ "${{ runner.os }}" = "Linux" ]; then
sudo apt-get update && sudo apt-get install -y make libfontconfig1-dev pkg-config
elif [ "${{ runner.os }}" = "macOS" ]; then
brew install make fontconfig pkg-config
fi
- name: Install make
run: sudo apt-get install make
- name: Lint
run: make lint