Skip to content

fix: file_depot: skip repeated urls when building component #86

fix: file_depot: skip repeated urls when building component

fix: file_depot: skip repeated urls when building component #86

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- build: liunx
os: ubuntu-latest
target: x86_64-unknown-linux-musl
- build: macos
os: macos-latest
target: x86_64-apple-darwin
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Check format
run: cargo fmt --check
- name: Clippy
run: cargo clippy -- -D clippy::pedantic -D clippy::cargo
- name: Run tests
run: cargo test --verbose