Skip to content

Merge pull request #8 from CodeBoarding/chore/readme-title #22

Merge pull request #8 from CodeBoarding/chore/readme-title

Merge pull request #8 from CodeBoarding/chore/readme-title #22

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
unittest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Run unit tests (stdlib only)
run: python -m unittest discover -s tests -v
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Install shellcheck
run: sudo apt-get update && sudo apt-get install -y shellcheck
- name: Install actionlint
run: go install github.com/rhysd/actionlint/cmd/actionlint@v1.7.7
- name: Run actionlint
run: actionlint
- name: Run shellcheck
run: shellcheck scripts/run_local.sh