Update main.yml

This commit is contained in:
Mateusz Słodkowicz 2024-03-16 00:12:15 +01:00 committed by GitHub
parent af4bb83398
commit c0740ebae0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 0 deletions

View File

@ -6,7 +6,14 @@ on:
- 'master' - 'master'
jobs: jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run tests
run: cargo test --verbose
docker: docker:
needs: ["tests"]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- -