Skip to content

Improved checkduplicates test and restructure project #9

Improved checkduplicates test and restructure project

Improved checkduplicates test and restructure project #9

name: Check for Duplicate Facts
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
checkduplicates:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache checkduplicates binary
uses: actions/cache@v4
with:
path: |
tests/checkduplicates/target/release/
key: ${{ runner.os }}-cargo-${{ hashFiles('tests/checkduplicates/Cargo.lock', 'tests/checkduplicates/Cargo.toml', 'tests/checkduplicates/src/**') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Build checkduplicates test
if: steps.cache.outputs.cache-hit != 'true'
run: |
cd tests/checkduplicates
cargo build --release
- name: Check for duplicate facts
run: |
cd tests/checkduplicates
./target/release/checkduplicates