diff --git a/.github/workflows/molecule.yml b/.github/workflows/molecule.yml index 11ab708..749f2c2 100644 --- a/.github/workflows/molecule.yml +++ b/.github/workflows/molecule.yml @@ -10,25 +10,21 @@ on: - develop - main - master - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - lint: - # The type of runner that the job will run on - runs-on: macos-10.15 + build: + runs-on: ubuntu-latest strategy: fail-fast: false max-parallel: 4 matrix: - python-version: [3.8] + python-version: [3.9] - # Steps represent a sequence of tasks that will be executed as part of the job steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: recursive - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - uses: actions/cache@v2