Leon's Blogging

Coding blogging for hackers.

Github Actions

| Comments

除了常見的 travis-ci circleci github 也出了自己的 github actions,比較特別的是,針對這些 action 還出了一個 github action marketplace,可以直接拿別人寫好的 action 就可以使用!蠻方便的

以下為 rails + mysql rspec 範例

Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: Continuous Integration

# 在什麼時機觸發跑這個 job,也可以針對不同 branch, tag 甚至設定 cronjob 之類的
on: [push]

# 設定環境的參數,記得密碼那些要跟專案一樣
env:
  RUBY_VERSION: 2.6.x
  NODE_VERSION: 12.x
  RAILS_ENV: test
  MYSQL_ROOT_PASSWORD: password
  MYSQL_PORT: 3306

jobs:
  rspec-test:
    name: RSpec
    # 跑在什麼系統 window, ubuntu, mac..
    runs-on: ubuntu-latest

  # 建立專案需要用到的其他 services e.g. mysql, redis ...
    services:
      mysql:
        image: mysql:5.7.29
        env:
          MYSQL_ROOT_PASSWORD: $
          MYSQL_PORT: $
        ports:
          - 3306:3306
        options: >-
          --health-cmd "mysqladmin ping"
          --health-interval 10s
          --health-timeout 5s
          --health-retries 5

    steps:
      # checkout 到指定要跑的 branch 或 tag (一定要加)
      - name: Check out code
        uses: actions/checkout@v2

      - name: Set up Ruby
        uses: actions/setup-ruby@v1
        with:
          ruby-version: $

      - name: Set up Node
        uses: actions/setup-node@master
        with:
          node-version: $

      - name: Install dependencies
        run: |
          gem install bundler -v 1.17.3
          bundle install --jobs 4 --retry 3
          yarn install

      - name: Create database
        env:
          RAILS_ENV: $
          MYSQL_PORT: $
        run: |
          bundle exec rails db:create
          bundle exec rails db:migrate

      - name: Run Rspec
        run: bundle exec rspec
     # 如果有加上 simplecov 就會產生一份報告,就可以透過這個別人寫的 action,將檔案產生,之後就可以在跑 action 的地方看到這份檔案
      - name: Upload coverage results
        uses: actions/upload-artifact@master
        if: always()
        with:
          name: coverage-report
          path: coverage

Reference:

Comments