Skip to content

Bump cc from 1.2.39 to 1.2.41 #36

Bump cc from 1.2.39 to 1.2.41

Bump cc from 1.2.39 to 1.2.41 #36

Workflow file for this run

name: threeway-merge-rs
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: .
steps:
- uses: actions/checkout@v3
- name: Install Git (for comprehensive tests)
run: |
sudo apt-get update
sudo apt-get install -y git
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Cache Cargo dependencies
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Release Build
run: cargo build --release
- name: Run Tests
run: cargo test --all --locked -- --nocapture