Skip to content

Merge pull request #108 from Pi-Cla/patch-1 #109

Merge pull request #108 from Pi-Cla/patch-1

Merge pull request #108 from Pi-Cla/patch-1 #109

Workflow file for this run

name: build
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: git-absorb-${{ matrix.os }}
path: |
target/release/git-absorb
target/release/git-absorb.exe