ssubmit 1.2.0

Submit sbatch jobs without having to create a submission script
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
PROJECT := "ssubmit"

# run clippy to check for linting issues
lint:
    cargo clippy --all-features --all-targets -- -D warnings

# run all tests
test:
    cargo test -v --all-targets --no-fail-fast

# get coverage with tarpaulin
coverage:
    cargo tarpaulin -t 300 -- --test-threads 1