Skip to content

Commit

Permalink
add github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nikooo777 committed Aug 25, 2023
1 parent 9ddb228 commit 03c627e
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-20.04 # equivalent to 'dist: focal'

steps:
- name: Check out code
uses: actions/checkout@v2

- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.20'

- name: Shutdown Default Ubuntu MySQL
run: sudo service mysql stop

- name: Set up MySQL using mirromutth/mysql-action
uses: mirromutth/mysql-action@v1.1
with:
mysql version: 'latest'
mysql database: 'commentron'
mysql root password: 'citesting' # Empty password

- name: Before Install
run: |
sudo mysql -u root -pcitesting -e 'CREATE DATABASE IF NOT EXISTS commentron;'
sudo mysql -u root -pcitesting -e 'CREATE DATABASE IF NOT EXISTS social;'
sudo mysql -u root -pcitesting -e "CREATE USER 'lbry-rw'@'localhost' IDENTIFIED BY 'lbry';"
sudo mysql -u root -pcitesting -e "CREATE USER 'lbry-ro'@'localhost' IDENTIFIED BY 'lbry';"
sudo mysql -u root -pcitesting -e "GRANT ALL ON commentron.* TO 'lbry-rw'@'localhost';"
sudo mysql -u root -pcitesting -e "GRANT SELECT ON commentron.* TO 'lbry-ro'@'localhost';"
sudo mysql -u root -pcitesting -e "GRANT ALL ON social.* TO 'lbry-rw'@'localhost';"
- name: Cache
uses: actions/cache@v2
with:
path: |
${{ runner.home }}/go/pkg/mod
${{ runner.home }}/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run Scripts and Tests
run: |
./scripts/build.sh
./scripts/lint.sh
source ./scripts/setup.sh
./bin/commentron serve &
sleep 5s
curl -i -H 'Accept: application/json' -H 'Content-Type: application/json' http://localhost:3306
go test ./...
go mod tidy
git diff --exit-code
./scripts/gen_models.sh
sqlboiler --version
git diff --exit-code
./bin/commentron test
- name: Deploy
if: github.event_name == 'push'
run: |
bash docker/docker.sh

0 comments on commit 03c627e

Please sign in to comment.