28 lines
534 B
YAML
28 lines
534 B
YAML
name: Unit Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
steps:
|
|
- run: echo All good!
|
|
# test:
|
|
# runs-on: ubuntu-latest
|
|
|
|
# steps:
|
|
# - name: Checkout code
|
|
# uses: actions/checkout@v4
|
|
|
|
# - name: Set up Gleam
|
|
# uses: gleam-lang/setup-gleam@v1
|
|
# with:
|
|
# gleam-version: latest
|
|
|
|
# - name: Install dependencies
|
|
# run: cd weather_portal && gleam deps download
|
|
|
|
# - name: Run tests
|
|
# run: cd weather_portal && gleam test
|