build(deps): bump google/cloud-sdk from 509.0.0-alpine to 510.0.0-alpine #777
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Test" | |
on: | |
push: | |
branches-ignore: | |
- 'dependabot/*' | |
schedule: | |
- cron: '22 22 * * 5' | |
env: | |
IMAGE: ${{ github.repository }} | |
jobs: | |
lint: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Markdown Lint | |
uses: actionshub/markdownlint@v3.1.4 | |
- name: YAML Lint | |
uses: karancode/yamllint-github-action@master | |
with: | |
yamllint_config_filepath: .yamllint.yaml | |
yamllint_file_or_dir: action.yml | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install bats | |
run: sudo apt-get -y install bats > /dev/null | |
- name: Run CI script | |
run: ./tests/run.bats |