Update twine-validator.txt fixed typo #144
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: Validate twine files | |
on: [push] | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.6 | |
- name: Install twine | |
run: | | |
gem install twine | |
- name: Validate files | |
run: | | |
twine validate-twine-file twine-cert.txt | |
twine validate-twine-file twine-validator.txt |