Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI

on:
push:
branches: [ main ]
branches: [ main, release/1.0 ]
pull_request:
branches: [ main ]
branches: [ main, release/1.0 ]

jobs:

Expand All @@ -15,9 +15,10 @@ jobs:
steps:

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: 1.19.x
# Needed by project-checks
go-version: 1.23.x
id: go

- name: Setup environment
Expand All @@ -27,13 +28,13 @@ jobs:
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH

- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: src/github.com/containerd/btrfs
fetch-depth: 25

- name: Project checks
uses: containerd/project-checks@v1
uses: containerd/project-checks@v1.2.1
with:
working-directory: src/github.com/containerd/btrfs

Expand Down
1 change: 1 addition & 0 deletions btrfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

#include <stddef.h>
#include <string.h>
#include <linux/magic.h>
#include <btrfs/ioctl.h>
#include <btrfs/ctree.h>
Expand Down
Loading