Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# ============================================================================
name: Tests

Check warning on line 15 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

continuous-integration.yml:15: overly broad permissions: default permissions used due to no permissions: block
on: [push, pull_request]
jobs:
lints:

Check warning on line 18 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

continuous-integration.yml:18: overly broad permissions: default permissions used due to no permissions: block
name: Lints
runs-on: ubuntu-latest
strategy:
Expand All @@ -23,17 +23,17 @@
python-version: [3.12]
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

Check failure on line 26 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 26 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

continuous-integration.yml:26: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
fetch-depth: 20
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5

Check failure on line 30 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 30 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

continuous-integration.yml:30: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
python-version: ${{ matrix.python-version }}
- name: Lints
run: |
./testing/run_github_lints.sh
tests:

Check warning on line 36 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

continuous-integration.yml:36: overly broad permissions: default permissions used due to no permissions: block
name: Tests
runs-on: ubuntu-latest
strategy:
Expand All @@ -45,19 +45,19 @@
NUM_SHARDS: 5
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

Check failure on line 48 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 48 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

continuous-integration.yml:48: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
fetch-depth: 1
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5

Check failure on line 52 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 52 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

continuous-integration.yml:52: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
python-version: ${{ matrix.python-version }}
- name: Tests
run: |
./testing/run_github_tests.sh
- name: Upload test logs
if: failure()
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4

Check failure on line 60 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 60 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

continuous-integration.yml:60: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
name: testlogs-${{ matrix.shard }}
path: bazel-testlogs
Loading