Skip to content

Commit

Permalink
Update CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
xyproto committed Jan 14, 2024
1 parent 9d8bf70 commit ac8644a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,18 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
container: archlinux:latest

steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get install -y gcc vim

- name: Update system and Install dependencies
run: |
sudo pacman -Syu --noconfirm
sudo pacman -S --noconfirm gcc vim
- name: Build
run: make

- name: Test
run: make test

0 comments on commit ac8644a

Please sign in to comment.