mirror of
				https://github.com/cmur2/openvpn-status-web.git
				synced 2025-11-04 04:25:09 +01:00 
			
		
		
		
	ci: use Github Actions in parallel to Travis CI
- this adds a new workflow for Github Actions that mirrors what the existing Travis CI workflow tests - Travis CI might become unfriendly to opensource soonish so migration might be necessary
This commit is contained in:
		
							
								
								
									
										33
									
								
								.github/workflows/ci.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								.github/workflows/ci.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,33 @@
 | 
			
		||||
---
 | 
			
		||||
name: ci
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  push:
 | 
			
		||||
    branches: [master]
 | 
			
		||||
  pull_request:
 | 
			
		||||
    branches: [master]
 | 
			
		||||
  workflow_dispatch:
 | 
			
		||||
  schedule:
 | 
			
		||||
  - cron: '35 4 * * 4'  # weekly on thursday morning
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  build:
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    strategy:
 | 
			
		||||
      matrix:
 | 
			
		||||
        ruby-version:
 | 
			
		||||
        - '2.5'
 | 
			
		||||
        - '2.6'
 | 
			
		||||
        - '2.7'
 | 
			
		||||
    steps:
 | 
			
		||||
    - uses: actions/checkout@v2
 | 
			
		||||
    - name: Set up Ruby ${{ matrix.ruby-version }}
 | 
			
		||||
      uses: ruby/setup-ruby@v1
 | 
			
		||||
      with:
 | 
			
		||||
        ruby-version: ${{ matrix.ruby-version }}
 | 
			
		||||
    - name: Install dependencies
 | 
			
		||||
      run: |
 | 
			
		||||
        bundle
 | 
			
		||||
    - name: Test
 | 
			
		||||
      run: |
 | 
			
		||||
        bundle exec rake ci
 | 
			
		||||
@@ -7,4 +7,4 @@ rvm:
 | 
			
		||||
- 2.5
 | 
			
		||||
 | 
			
		||||
script:
 | 
			
		||||
- bundle exec rake travis
 | 
			
		||||
- bundle exec rake ci
 | 
			
		||||
 
 | 
			
		||||
@@ -1,6 +1,6 @@
 | 
			
		||||
# openvpn-status-web
 | 
			
		||||
 | 
			
		||||
[](https://travis-ci.com/cmur2/openvpn-status-web) [](https://depfu.com/github/cmur2/openvpn-status-web?project_id=6194)
 | 
			
		||||
[](https://travis-ci.com/cmur2/openvpn-status-web)  [](https://depfu.com/github/cmur2/openvpn-status-web?project_id=6194)
 | 
			
		||||
 | 
			
		||||
## Description
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user