Use GHA for CI and stop uploading to cloudsmith #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI (Pull Requests) | |
on: | |
pull_request: | |
jobs: | |
build: | |
# 4 cpu, 16G ram | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Build And Test | |
uses: ./.github/actions/build-test |