allwords 0.1.2

Generate all the words over a given alphabet
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: Release

on:
  release:
    types:
      - created

jobs:
  build:
    runs-on: "ubuntu-20.04"
    steps:
      - uses: actions/checkout@v2
      - name: Run tests
        run: cargo test --verbose
      - name: Release on Crates.io
        run: |
          cargo login ${{ secrets.CARGO_TOKEN }}
          cargo publish