Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Update README.md

Update README.md #38

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
# code-formatting:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout V
# uses: actions/checkout@v2
# with:
# repository: vlang/v
# - name: Checkout VPM
# uses: actions/checkout@v2
# with:
# path: vpm
# - name: Build V
# run: make
# - name: v fmt -verify
# run: |
# cd vpm
# ../v fmt -verify vpm.v user.v token.v package.v login.v db.v
ubuntu:
runs-on: ubuntu-18.04
steps:
- name: Checkout V
uses: actions/checkout@v2
with:
repository: vlang/v
- name: Build V
run: make
- name: Checkout discord.v
uses: actions/checkout@v2
with:
path: terisback/discordv
- name: Symlink to ~/.vmodules
run: ln -s $PWD/terisback ~/.vmodules/terisback
- name: Install dependencies
run: sudo apt-get install --quiet -y libssl-dev
- name: Build ping-pong example
run: |
./v ./terisback/discordv/examples/ping-pong/main.v
- name: Build send-embed example
run: |
./v ./terisback/discordv/examples/send-embed/main.v
- name: Build upload-image example
run: |
./v ./terisback/discordv/examples/upload-image/main.v