- Pin actions/checkout to commit SHA (v4.2.2) to prevent tag mutation attacks - Remove branch filters so CI runs on push to all branches, not just main
13 lines
204 B
YAML
13 lines
204 B
YAML
name: check
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
- run: docker build .
|