diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0e4a5703f9..913b82e392 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,19 +1,23 @@ name: Tests - on: [push, pull_request] - jobs: tests: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest name: Unit Tests steps: - - uses: actions/checkout@v2 - - uses: actions/setup-go@v2 - with: - go-version: '^1.13.1' - - uses: actions/setup-python@v2 - with: - python-version: '3.x' - - run: git fetch --prune --unshallow --tags - - run: make setup - - run: make check + - name: Install Go + uses: actions/setup-go@v2 + with: + go-version: '1.13.x' + - name: Install Python + uses: actions/setup-python@v2 + with: + python-version: '3.x' + - name: Checkout code + uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Setup + run: make setup + - name: Test + run: make check \ No newline at end of file