Skip to content

Commit

Permalink
CI: Add initial GitHub Actions configuration
Browse files Browse the repository at this point in the history
Fixes: #2569
  • Loading branch information
Conan-Kudo authored and dmnks committed Aug 3, 2023
1 parent 2387539 commit d4cad0f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Linux CI

on: [push, pull_request]

jobs:
build_and_test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

This comment has been minimized.

Copy link
@nwalfield

nwalfield Aug 3, 2023

Contributor

v3 is the current version. Is there a reason to use v2?

This comment has been minimized.

Copy link
@dmnks

dmnks Aug 3, 2023

Contributor

Indeed, I did notice this myself too but didn't follow up on it before merging. No reason for v2 as far as I'm aware. I'll bump this to v3, thanks!

- name: Build the Fedora testing environment
run: sudo ./mktree.docker build
working-directory: ./tests
- name: Run the test suite
run: sudo ./mktree.docker check --interactive=false -j$(nproc)
working-directory: ./tests

0 comments on commit d4cad0f

Please sign in to comment.