make sure curl is part of the docker container for healthcheck in coo… #7
This file contains hidden or 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: Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v2.3.3 | |
- name: Run tests | |
run: deno test --allow-net --allow-env --allow-read | |
env: | |
ENV: test | |
MONERIUM_CLIENT_ID: xxx | |
MONERIUM_CLIENT_SECRET: xxx | |
DISCORD_BOT_TOKEN: xxx | |
DISCORD_CHANNEL_ID: xxx |