Skip to content

Update Whatsapp

Update Whatsapp #652

Workflow file for this run

name: Checks
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
lint:
name: Lint
timeout-minutes: 1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ./sx lint
shell: bash
tests:
name: Tests
timeout-minutes: 1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ./sx test
shell: bash