new options for pack #297
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: push | |
jobs: | |
build: | |
name: tokencrypt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: install | |
run: source ./install | |
- name: tests | |
run: | | |
crptest testing > test.log | |
echo >> test.log | |
packtest testing >> test.log | |
- name: commit | |
run: | | |
git config user.email "457124+liborty@users.noreply.github.com" | |
git config user.name "liborty" | |
git commit -am 'action:test.log' | |
- name: push | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} |