diff --git a/.github/workflows/ci_test.yml b/.github/workflows/ci_test.yml index c22a64f..5e806ff 100644 --- a/.github/workflows/ci_test.yml +++ b/.github/workflows/ci_test.yml @@ -1,27 +1,25 @@ -name: amdirt-CI +name: amdirt -on: [push, pull_request] +on: + - push + - pull_request jobs: - amdirt_ci: - runs-on: ${{ matrix.os }} + build: + runs-on: ubuntu-latest strategy: - fail-fast: false matrix: - os: [ubuntu-latest] - python-version: ["3.10", "3.11", "3.12"] + python-version: ['3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - - name: Install dependencies run: | + python -m pip install --upgrade pip python -m pip install tox tox-gh-actions - name: Test with tox - run: tox - + run: tox \ No newline at end of file