From 234cfb51a26410986984ce0e7f7d1c04107b62f0 Mon Sep 17 00:00:00 2001 From: Clay McLeod Date: Fri, 3 Jan 2025 14:07:27 -0600 Subject: [PATCH] WIP --- .github/workflows/comparison.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/comparison.yml diff --git a/.github/workflows/comparison.yml b/.github/workflows/comparison.yml new file mode 100644 index 0000000..1b98783 --- /dev/null +++ b/.github/workflows/comparison.yml @@ -0,0 +1,25 @@ +name: Compare + +on: + push: + branches: + - main + pull_request: + +jobs: + crossmap: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Cache Primes + id: cache-primes + uses: actions/cache@v4 + with: + path: chainfiles + key: ${{ runner.os }}-chainfiles + - name: Update Rust + run: rustup update stable && rustup default stable + - uses: Swatinem/rust-cache@v2 + with: + workspaces: . + - run: cargo run --release --features=binaries -d chainfiles hg19ToHg38 \ No newline at end of file