Skip to content

Change styling

Change styling #8

Workflow file for this run

on: [push]
name: CI
jobs:
build:
name: git-del-branches
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features --target-dir out/${{ matrix.os }}
- name: Archive built files
uses: actions/upload-artifact@v3
with:
name: Built binaries
path: |
*/${{ matrix.os }}/release/git-del-branches
*/${{ matrix.os }}/release/git-del-branches.exe