Skip to content

refactor: better code #174

refactor: better code

refactor: better code #174

Workflow file for this run

name: Continuous Intergration
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake python3 ccache
- name: Run run_tests.py
run: python3 tests/run_tests.py
merge:
needs: test
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps:
- name: Merge main -> v3
uses: devmasx/merge-branch@1.4.0
with:
type: now
from_branch: main
target_branch: v3
github_token: ${{ github.token }}