Disable cargo-vet

This commit is contained in:
MTRNord 2022-11-23 21:43:18 +01:00
parent f93e5aae40
commit e779e49030
2 changed files with 0 additions and 25 deletions

View File

@ -1,22 +0,0 @@
name: CI
on: [push, pull_request]
jobs:
cargo-vet:
name: Vet Dependencies
runs-on: ubuntu-latest
env:
CARGO_VET_VERSION: 0.3.0
steps:
- uses: actions/checkout@master
- name: Install Rust
run: rustup update stable && rustup default stable
- uses: actions/cache@v2
with:
path: ${{ runner.tool_cache }}/cargo-vet
key: cargo-vet-bin-${{ env.CARGO_VET_VERSION }}
- name: Add the tool cache directory to the search path
run: echo "${{ runner.tool_cache }}/cargo-vet/bin" >> $GITHUB_PATH
- name: Ensure that the tool cache is populated with the cargo-vet binary
run: cargo install --root ${{ runner.tool_cache }}/cargo-vet --version ${{ env.CARGO_VET_VERSION }} cargo-vet
- name: Invoke cargo-vet
run: cargo vet --locked

View File

@ -12,9 +12,6 @@ from nltk.corpus import stopwords
from tensorflow import keras
vocab_size = 1000
# embedding_dim = 16
# embedding_dim = 32
# embedding_dim = 64
logdir = "logs/scalars/" + datetime.now().strftime("%Y%m%d-%H%M%S")