diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a0f262771..7cbd41c9b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -75,23 +75,26 @@ jobs: components: clippy - name: clippy - run: cargo clippy --all + run: cargo clippy python_tests: - name: 3.7 python tests sample + name: Python Tests 3.7 runs-on: ubuntu-latest + steps: - - uses: actions/checkout@master - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: nightly - override: true - components: rustfmt - - - name: Setup python - uses: actions/setup-python@v1 - with: - python-version: 3.x - architecture: x64 - - run: bash ci_scripts/run-python.sh + - uses: actions/checkout@v1 + + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: nightly + override: true + + - uses: actions/setup-python@v1 + with: + python-version: '3.x' + architecture: 'x64' + + - name: Run tests + shell: bash + run: ci_scripts/run-python.sh