sigi 3.8.0

An organizing tool for terminal lovers who hate organizing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: build

on: [ push, pull_request, workflow_dispatch ]

env: { CARGO_TERM_COLOR: always }

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v4
      - run: 'cargo build --verbose'
      - run: 'cargo test --verbose'