18 lines
314 B
YAML
18 lines
314 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- feat/解決問題
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install jq
|
|
run: sudo apt-get update && sudo apt-get install -y jq
|
|
- name: Run shell tests
|
|
run: bash tests/entrypoint.sh
|